()
| 121 | |
| 122 | ############# |
| 123 | def set_directory(): |
| 124 | print("Enter the directory to be set: ") |
| 125 | data = input() |
| 126 | chdir(data + ":\\") |
| 127 | print("Enter name for the folder: ") |
| 128 | data = input() |
| 129 | create_directory(data) |
| 130 | return True |
| 131 | |
| 132 | |
| 133 | ############## |
nothing calls this directly
no test coverage detected