📜  检查用户输入文件名的可用性 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:24.539000             🧑  作者: Mango

代码示例1
FileName = raw_input("Please input a Valid File Name : ")
if os.path.isfile("C:/Users/Brads/Documents/" + FileName + ".txt"):
    print("File Exists")
else:
    print("File does not exist")