OS

  1. 현재 작업 디렉토리 확인하기:

    current_dir = os.getcwd()
    print("Current working directory:", current_dir)
    
  2. 디렉토리 생성하기:

    new_dir = "new_directory"
    os.mkdir(new_dir)
    
  3. 디렉토리나 파일이 존재하는지 확인하기:

    path = "path_to_directory_or_file"
    exists = os.path.exists(path)
       
    if exists:
        print("Path exists:", path)
    else:
        print("Path does not exist:", path)
    
  4. 디렉토리 내의 파일 목록 가져오기:

    directory = "path_to_directory"
    files = os.listdir(directory)
       
    print("Files in directory:")
    for file in files:
        print(file)
    
  5. 파일 이동하기:

    src_file = "source_file.txt"
    dest_file = "destination_directory/destination_file.txt"
       
    os.rename(src_file, dest_file)
    
  6. 파일 삭제하기:

    file = "file_to_delete.txt"
       
    os.remove(file)
    

댓글남기기