我需要是否有一种方法(方法)可以从库或模块中导入,以便我可以使用python 3.x恢复(恢复)具有特定扩展名的已删除文件,因为我正在编写与此相关的程序...
选择Partian
import os
class Storage:
def select(self):
letter = input("Press Storage Letter Name\n")
partition_name = os.startfile(format(letter.upper() + ':'))
print(partition_name)
card = Storage()
card.select()
#Scan Photo
import os
class Photo:
def scan(self):
confirm = input("Confirm Letter Name\n")
path = format(confirm.upper() + ':')
for root, dirs, files in os.walk(path):
for f in files:
if f.endswith('.mp4'):
print(f)
答案 0 :(得分:0)
我不认为这是如此简单。
有很多问题: