J Jean Pierre Daviau Mar 21, 2005 #1 I would like a line of code that reorganize the files in a folder by type. Is this possible? Jean
J Jerold Schulman Mar 21, 2005 #2 I would like a line of code that reorganize the files in a folder by type. Is this possible? Jean Click to expand... For /f "Tokens=*" %%a in ('dir c:\Folder /a-d /oen') do @echo %%a Jerold Schulman Windows Server MVP JSI, Inc. http://www.jsiinc.com
I would like a line of code that reorganize the files in a folder by type. Is this possible? Jean Click to expand... For /f "Tokens=*" %%a in ('dir c:\Folder /a-d /oen') do @echo %%a Jerold Schulman Windows Server MVP JSI, Inc. http://www.jsiinc.com
D David Trimboli Mar 22, 2005 #3 Jerold said: For /f "Tokens=*" %%a in ('dir c:\Folder /a-d /oen') do @echo %%a Click to expand... Or, he may just want this: dir /oe David Stardate 5223.0
Jerold said: For /f "Tokens=*" %%a in ('dir c:\Folder /a-d /oen') do @echo %%a Click to expand... Or, he may just want this: dir /oe David Stardate 5223.0
J Jean Pierre Daviau Mar 23, 2005 #4 Thanks. I was meaning reorder and reorganise the files display on the desktop like we can do with a right-click. Sorry for the confusion
Thanks. I was meaning reorder and reorganise the files display on the desktop like we can do with a right-click. Sorry for the confusion