Search found 7 matches
- 29 Apr 2013 13:32
- Forum: DOS Batch Forum
- Topic: Find all files,folders and sub-folders inside a Shared Locat
- Replies: 3
- Views: 3611
Re: Find all files,folders and sub-folders inside a Shared L
Hi Geeks, echo off dir /s/b C:\*.* > files.xls The above code gives me the path of all folders, files inside my C drive but when i am changing the path from "C:\" to shared location "\\PLS10\apple\" it does not work. It will work if you have permissions to access the location. D...
- 29 Apr 2013 12:57
- Forum: DOS Batch Forum
- Topic: Find all files,folders and sub-folders inside a Shared Locat
- Replies: 3
- Views: 3611
Re: Find all files,folders and sub-folders inside a Shared L
Hi Geeks, echo off dir /s/b C:\*.* > files.xls The above code gives me the path of all folders, files inside my C drive but when i am changing the path from "C:\" to shared location "\\PLS10\apple\" it does not work. It will work if you have permissions to access the location. D...
- 29 Apr 2013 11:18
- Forum: DOS Batch Forum
- Topic: Find all files,folders and sub-folders inside a Shared Locat
- Replies: 3
- Views: 3611
Find all files,folders and sub-folders inside a Shared Locat
Hi Geeks, I am trying write a batch file to generate a excel file which will have the path of all files, folders,sub-folders and files inside sub-folders from a shared location. When i tried using the following code, it works perfect in my local machine but it does not helps me to get data from the ...
- 25 Apr 2013 11:32
- Forum: DOS Batch Forum
- Topic: I wants to create a batch file with the following conditions
- Replies: 6
- Views: 5989
Re: I wants to create a batch file with the following condit
Endoro wrote:It should also work with a shared net ressource.
thanks for the guide


thanks in advance
- 25 Apr 2013 11:00
- Forum: DOS Batch Forum
- Topic: I wants to create a batch file with the following conditions
- Replies: 6
- Views: 5989
Re: I wants to create a batch file with the following condit
Try this and remove the "echo" command before "copy" if the output is OK: @echo off&setlocal set "startfolder=X:\my start\folder" for /d /r "%startfolder%" %%i in (*) do if exist "%%~fi\%%~ni.apf" echo copy nul "%%~fi\%%~ni.event" Than...
- 25 Apr 2013 10:12
- Forum: DOS Batch Forum
- Topic: I wants to create a batch file with the following conditions
- Replies: 6
- Views: 5989
Re: I wants to create a batch file with the following condit
I have briefly explained the condition please check. Thanks in advance
- 25 Apr 2013 09:59
- Forum: DOS Batch Forum
- Topic: I wants to create a batch file with the following conditions
- Replies: 6
- Views: 5989
I wants to create a batch file with the following conditions
I'm having one great challenge according to create a batch file. Here is my situation I'm having folder full of folders and files(note all the files are in ".apf" extension). I want to create a empty file with ".event" extension in each and every folder where the folder name and ...