Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
mount a directory
Name: ycs2k Date: January 11, 2006 at 21:38:00 Pacific OS: XP CPU/Ram: 512
Comment:
How to mount a directory to a directory in windows. e.g. c:\MyWork\work -> d:\Tmp\work1\test
Name: jefro Date: January 12, 2006 at 13:46:36 Pacific
Reply:
There used to be a way to do this in dos I think.?? (been a LONG time) Might study that to see if any still works. It wasn't called mount but something else. Can't remember.
Summary: Sometimes when I try to delete a directory I get the following message: “Cannot delete (Whatever Dir): It is being used by another person or program. Close any programs that might be using the file an...
Summary: @echo off > %TEMP%\DLIST setLocal EnableDelayedExpansion set #=0 for /f "tokens=*" %%D in ('dir/s/b/ad \temp\-') do ( set /a #+=1 echo [!#!] %%D >> %TEMP%\DLIST ) type %TEMP%\DLIST set /p dirNUM=choos...