本文整理汇总了Python中db.Db.deleteFileFromList方法的典型用法代码示例。如果您正苦于以下问题:Python Db.deleteFileFromList方法的具体用法?Python Db.deleteFileFromList怎么用?Python Db.deleteFileFromList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类db.Db
的用法示例。
在下文中一共展示了Db.deleteFileFromList方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: while
# 需要导入模块: from db import Db [as 别名]
# 或者: from db.Db import deleteFileFromList [as 别名]
fileOk = True
filesList = db.printFilesList(dirList[dirChoice])
for f in filesList:
print f
#Réalisation de l'analyse
pass
elif choice == 3:
choice3 = -1
while( not choice3 in range(1,2) ):
try:
choice3 = int(input("Que voulez-vous faire ?\n1-Supprimer un fichier\n2-Supprimer un wav\n"))
except NameError:
print "Ceci n'est pas un nombre !"
if choice3 == 1:
print "Fichiers : "
filesList = db.printDirFiles()
dirName = "storage/"
elif choice3 == 2:
print "Dossiers des waves : "
filesList = db.printDirFiles("waves/")
dirName = "waves/"
fileChoice = -1
while( not fileChoice in range(len(filesList)) ):
try:
fileChoice = int( input( "Choisissez un fichier a traiter et entrez son numero : " ) )
except NameError:
print "Ceci n'est pas un nombre !"
db.deleteFileFromList(filesList[fileChoice],dirName)
else:
pass