假设我有一条这样的路
/x/xx/file
我想同时移动/x/
to子文件夹内的所有文件。/x/
这可能吗?
我使用的是 Ubuntu 16.04。
子文件夹具有不同的名称,我想将子文件夹内的所有文件(无论深度)移动到/x/
.另外,我可能会有/x/
不在任何子文件夹中的备用文件。/x/
无论如何,任何文件都不应该位于上面。
答案1
移动到目标文件夹并执行:
find . -mindepth 2 -type f -print -exec mv {} . \;
它将-mindepth 2
递归搜索,不包括当前目录。
答案2
这取决于子目录的数量
mv */* .
答案3
这个 python 脚本应该在 Windows 上完成这项工作:
import pyautogui
import keyboard
import time
# Pause for a few seconds to give you time to switch to the window you want to automate
time.sleep(10)
print("10sec")
while True:
pyautogui.press('enter')
print("Pressed Enter key")
time.sleep(1)
pyautogui.hotkey('ctrl', 'a')
print("Pressed Ctrl+A keys")
pyautogui.hotkey('ctrl', 'x')
print("Pressed Ctrl+X keys")
pyautogui.press('backspace')
print("Pressed Backspace key")
time.sleep(3)
pyautogui.hotkey('ctrl', 'v')
print("Pressed Ctrl+V keys")
pyautogui.press('delete')
print("Pressed Delete key")
time.sleep(1)
pyautogui.press('enter')
print("Pressed Enter key")
time.sleep(1)
pyautogui.press('right')
print("Pressed Right Arrow key")
pyautogui.press('left')
print("Pressed Left Arrow key")
# Listen for the Esc key press and stop the script if detected
if keyboard.is_pressed('Esc'):
break
注意:它还会删除子文件夹