Sunday, August 17, 2008

at 2:42 AM Labels: , Posted by nyimuyar

ဘတ္ခ်္ဖိုင္ သုိ ့ကြန္မန္းလိုင္း ျဖင့္ ဖိုင္ကေလးမ်ားစြာကို ရွာေဖြၿပီး ေနရာသစ္တြင္ သိမ္းယူပံု

စာေရးသူ ရဲ ့ စက္ထဲက ဖိုဒါ တခုထဲမွာ ေနာက္ထပ္ ဆပ္ဖိုဒါ ေလးေတြ အမ်ားၾကီးရွိေနပါတယ္။ အဲ့ဒီ ဆပ္ဖိုဒါ ေလးေတြ ထဲမွာ မတူညီတဲ့ ဖိုင္ အမ်ိဳးအစား ေလးေတြ ပြစိတက္ေနပါတယ္။ အဲ့ဒီ ဖိုင္ေတြ ထဲကမွ ဆိုၾကပါစို ့ .pdf ဖိုင္ေတြ ေပါ့ဗ်ာ။ အဲ့ဒီ .pdf ဖိုင္ေတြ ခ်ည္းပဲ ေရြးၿပီး ရွာလည္း ရွာ အျခားတေနရာကိုလည္း ကူခ်င္ပါတယ္။ အဲ့ဒါ ကို စာေရးသူက ကြန္မန္းလိုင္း ဒါမွမဟုတ္ ဘက္ခ်္ဖိုင္တခုကေန လုပ္ခ်င္ပါတယ္။ ကြန့္တာေပါ့ဗ်ာ။

ဒါနဲ့ အင္တာနက္ေပၚလိုက္ဖတ္ရင္းနဲ့ ရွာတဲ့အခါ သြားေတြ႔ၿပီးအဆင္ေျပသြားပါတယ္။

မူလ ဖိုဒါ ႏွင့္ ဖိုင္မ်ားတည္ရွိပံု
folder structure are as below

C:
\OriginalFolder\folderA\test.pdf
C:\OriginalFolder\folderB\test2.pdf
C:\OriginalFolder\folderB\subFolder1\test3.pdf
C:\OriginalFolder\folderC\test4.pdf

what I want is
ေနရာသစ္တြင္ e are as below

C:
\OriginalFolder\folderA\test.pdf
C:\OriginalFolder\folderB\test2.pdf
C:\OriginalFolder\folderB\subFolder1\test3.pdf
C:\OriginalFolder\folderC\test4.pdf

what I want is
ေနရာသစ္တြင္
C:\NewFolder\ဆိုၿပီး ရွိထားရာ ထိုေအာက္တြင္ Pdfplace ဟူၿပီး အသစ္ ဖိုဒါ ေဆာက္ကာ အလုိအေလွ်ာက္ ကူးယူသြားေစခ်င္ျခင္းျဖစ္သည္
C:\NewFolder\Pdfplace

ထိုလုပ္ေဆာင္ခ်က္ကို ကြန္မန္းလိုင္း မွ တေၾကာင္းတည္း လည္း လုပ္ေဆာင္ႏိုင္သလို ဘက္ခ်္ဖိုင္ေရးၿပီးလည္း လုပ္ေဆာင္ႏိုင္ေၾကာင္း ေတြ ့ရသည္။

ကြန္မန္လိုင္းတြင္ တေၾကာင္းတည္း ေရးၿပီး လုပ္ေဆာင္ႏိုင္ေသာ လုပ္ေဆာင္ခ်က္

cmd /c For /F "tokens=* delims=" %* in ('Dir /b /s "C:\
OriginalFolder\*.pdf" 2^>nul') Do @ %WinDir%\system32\xcopy.exe /O /D /Y "%*" "C:\NewFolder\Pdfplace"

ဘက္ခ်္ဖိုင္ျဖင့္ လုပ္ေဆာင္ခ်က္
REM save this file as move.pdf
:: begin the file
:: Find and Copy Files from batch file
:: by nyimuyar.blogspot.com
:: 18 July 2008


@echo off

Set "sourcefiles=C:\OriginalFolder\*.pdf" (search also in subdirectories)
Set "destinationfolder=C:\NewFolder\Pdfplace"

For /F "tokens=* delims=" %%* in (
'Dir /b /s "%sourcefiles%" 2^>nul'
) Do echo.%%~nx* &(
%WinDir%\system32\xcopy.exe /O /D /Q /Y "%%*" "%destinationfolder%\" >nul
)
:: end the file

မူလ ေဆြးေႏြးခ်က္ ကိုဖတ္လိုလွ်င္ : source from here
and also read more as here

Share

0 comments: