import pathlib fileName ="file1.txt" location = "E:\SampleFolder" filePath = os.path.join(location, fileName) file = pathlib.Path(filePath) # Call the ...
確定! 回上一頁