aGerman
thanks, I will have a go at it and report
Search found 4 matches
- 12 Jan 2011 02:46
- Forum: DOS Batch Forum
- Topic: Set list of sobfolder as string
- Replies: 7
- Views: 9964
- 11 Jan 2011 13:05
- Forum: DOS Batch Forum
- Topic: Set list of sobfolder as string
- Replies: 7
- Views: 9964
Re: Set list of sobfolder as string
I need to separate with "/" and rebuild a paths over a remote server so that is way I was looking to get something on the line: str1=c:/blabla/test1 str2=c:/blabla/test2 str3=c:/blabla/test3 then from there rebuild as: i/caf/test1 i/caf/test2 i/caf/test3 I do understand that for instance w...
- 11 Jan 2011 04:53
- Forum: DOS Batch Forum
- Topic: Set list of sobfolder as string
- Replies: 7
- Views: 9964
Re: Set list of sobfolder as string
Thanks,
as I said am new where can I manipulate the str created
cheers
as I said am new where can I manipulate the str created
cheers
- 11 Jan 2011 02:37
- Forum: DOS Batch Forum
- Topic: Set list of sobfolder as string
- Replies: 7
- Views: 9964
Set list of sobfolder as string
Hello everyone, I am new at batch coding. I want to get all the folder and subfolder of a directory (full path), set the as VAR in strings and parse them to get the parts i need. I have this at the moment @echo off set count=1 for /f %%a in ('dir /s /on /b /ad') do (call :sdosums %%a) goto :eof :sdo...