• 목록
  • 아래로
  • 위로
import os, shutil

for root, subdirs, files in os.walk(검색할 폴더):
    for d in subdirs:
        if '찾을 단어' in d:
            dir_to_move = os.path.join(root, d)
            shutil.move(dir_to_move, 이동할 폴더)

 

폴더 내에서 특정 단어가 들어가는 하위 폴더를 모두 옮기려면 위와 같이 하면 됩니다.

 

윈도우 CMD나 파워쉘에서 이렇게 하려면 상당히 번거롭다고 알고 있네요 ㅠㅠ

 

 

import os, shutil

for root, subdirs, files in os.walk(검색할 폴더):
    for f in files:
        if '찾을 단어' in f:
            file_to_move = os.path.join(root, f)
            shutil.move(file_to_move, 이동할 폴더)

 

파일의 경우에는 위와 같이 하면 됩니다.

 

작성자
이니스프리 119 Lv. (0%) 2005920/115200000EXP

Make StudyForUs Great Again!

 

CSVpuymXAAAVVpd.jpg

댓글 0

권한이 없습니다.
번호 제목 글쓴이 날짜 조회 수
공지 [작업 완료] 설 명절 맞이 서버 업데이트 안내 3 마스터 마스터 24.02.11.17:21 985
공지 [중요] 호스팅 만료와 관련하여 일부 수칙이 변경됩니다. 4 마스터 마스터 23.01.14.02:23 4666
531 [Python] Zip 파일에서 특정 확장자의 파일들만 특정 폴더에 압축 풀기 이니스프리 이니스프리 22.08.01.19:31 539
530 [Python] PyMuPDF의 사용방법 이니스프리 이니스프리 22.07.28.21:33 490
529 [Python] Poppler 등 설치하지 않고 PDF -> Image 하는 모듈 이니스프리 이니스프리 22.07.28.11:20 225
528 [Python] 문자열을 숫자 크기대로 정렬하기 이니스프리 이니스프리 22.07.21.19:57 590
527 [Matplotlib] X축 눈금 레이블 텍스트를 회전시키는 방법 이니스프리 이니스프리 22.07.18.21:05 204
526 [Telegram] Bot의 inline keyboard 제거 이니스프리 이니스프리 22.07.01.20:35 190
525 [Filepond] 가로로 이미지 나열 이니스프리 이니스프리 22.06.20.21:26 259
524 [Selenium] Page down 이니스프리 이니스프리 22.06.19.12:40 167
523 [Python] Function to save list into a text file line by line 이니스프리 이니스프리 22.06.11.21:33 166
522 [Python] Bypassing Cloudflare's anti-bot page with Cloudscraper module 이니스프리 이니스프리 22.06.10.22:11 197
521 [Python] MP4 움짤을 clip하여 thumbnail 生成하기 이니스프리 이니스프리 22.06.09.08:35 173
520 [Python] MP4 50% 進行된 frame을 JPG thumbnail로 生成 이니스프리 이니스프리 22.06.06.15:15 133
519 [Python] MP4 -> JPG thumbnail 生成 1 이니스프리 이니스프리 22.06.04.16:38 131
518 [Python] Sending SMTP メール(Gmail) - Redmail module 이니스프리 이니스프리 22.06.02.20:38 123
517 [Python] PyHWP의 hwp5txt를 利用하여 Hancom file을 불러오기 이니스프리 이니스프리 22.05.29.07:59 371
516 [Python] print 되는대로 string으로 변환하는 function 이니스프리 이니스프리 22.05.22.19:59 133
515 [Python] Windows에서 Pocketsphinx 설치할 때 Swig 설치하는 방법 이니스프리 이니스프리 22.04.16.20:15 536
514 [Python] extension이 標示되지 않는 online image의 extension을 알아내기 이니스프리 이니스프리 22.04.01.20:51 170
513 [Python] PyMySQL에서 executemany()로 2 dimensional Array을 사용하여 DB에 적용하기 2 이니스프리 이니스프리 21.10.09.22:06 523
512 [Python] Google_images_search 모듈 : 구글에서 이미지 검색 및 크롤링하기 이니스프리 이니스프리 21.09.21.18:03 308