右鍵選單複製檔案 資料夾路徑到剪貼簿

2022-01-29 01:38:52 字數 908 閱讀 5857

這個功能還是挺常用的 不過網上找了一下 好多都是說用nircmd這個東西擴充的 想想我這邊開發的機器肯定裝了powershell 操作剪貼簿這種事情肯定不用裝別的了 當然系統有自帶的就好了 隨意找了一下 果然有個clip命令可以操作剪貼簿 那麼事情就好辦了

windows registry editor version 5.00

[hkey_classes_root\*\shell\copypath]

@="複製檔案路徑到剪貼簿"

[hkey_classes_root\*\shell\copypath\command]

@="cmd /c echo %1 | clip"

[hkey_classes_root\*\shell\copypathwithquote]

@="複製檔案路徑到剪貼簿(帶引號)"

[hkey_classes_root\*\shell\copypathwithquote\command]

@="cmd /c echo \"%1\" | clip"

[hkey_classes_root\directory\shell\copypath]

@="複製資料夾路徑到剪貼簿"

[hkey_classes_root\directory\shell\copypath\command]

@="cmd /c echo %1 | clip"

[hkey_classes_root\directory\shell\copypathwithquote]

@="複製資料夾路徑到剪貼簿(帶引號)"

[hkey_classes_root\directory\shell\copypathwithquote\command]

@="cmd /c echo \"%1\" | clip"

帶不帶引號的都有了 滿足我平時需求了

c 複製檔案到目標資料夾

region 將整個資料夾複製到目標資料夾中。將整個資料夾複製到目標資料夾中。源資料夾路徑 目標資料夾路徑 private void copydirectory string srcdir,string desdir string filenames directory.getfilesysteme...

Python 複製檔案到指定資料夾

通過os.listdir 獲取指定資料夾下的檔案或資料夾的名字的列表 再迴圈列印出所有檔案或資料夾的名字,將檔名賦值於aa,字尾名賦值於bb 即aa,bb split 匹配你想要複製的檔案 if actor hud in aa.lower 指定的資料夾 newname u d program fil...

python複製檔案到資料夾中

目標 將一張複製到乙個資料夾下 所有子檔案中。import shutil importos 第一部分,準備工作,拼接出要存放的資料夾的路徑 file e 測試 1.jpg current foder是 模擬 資料夾下所有子檔名組成的乙個列表 current folder os.listdir e 測...