I am working on a project that requires me to process a large amount of uncompressed video data, so I need to save all the data on my external hard drive. So far, I got cwd with:
import os os.getcwd()
And I know how to change the directory with the following command:
path='E:\College\Project\3dlife-gc-2013-dataset-hhi\3dlife-gc-2013-dataset-hhi' os.chdir(path)
This command does not allow me to modify cwd as I wish. I suspect my path is not formatted correctly. Thank you for reading:)
source share