我正在尝试创建一个脚本,用户可以在其中选择文件夹中的1个或所有文件(以“模仿”Matlab中 uigetfile 的多选选项)。之后,脚本将询问用户是否要从其他位置导入数据,并继续导入1或所有例程。
脚本的任务只是检索多选项的路径和文件名。它是在使用Windows 10的PC上编写的,其中Python 3.6和Spyder作为Anaconda Distro中的IDE。
到目前为止,我有这个:
def import_multiple_files():
# Similar to UIGETFILE
import tkinter as tk
from tkinter import filedialog
from tkinter import messagebox
import glob
root = tk.Tk()
root.withdraw()
root.attributes("-topmost", True)
root.lift()
file_location = filedialog.askopenfilename()
a=file_location.split('/')
path=[]
for i in range(0,len(a)-1):
path.append(a[i])
path= "/".join(path)
filename=a[len(a)-1]
# Questions the user
qst=messagebox.askyesno("Multiple Import","Do you want to import all .txt files in this folder?")
allFiles=[]
if qst==True:
# Gets all .txt files in path FOLDER
b=glob.glob(path + "/*.txt") # glob. lists the filename and path
allFiles.append(b)
else:
b=(path + "/"+ filename)
allFiles.append(b)
qst=messagebox.askyesno("Multiple Import","Do you want to import more DATA?")
finish=0
while finish==0:
if qst==True:
# deletes all variables except "AllFILES" (location of all files to import)
del(root,file_location,a,path,qst,b)
root = tk.Tk()
root.withdraw()
root.attributes("-topmost", True)
root.lift()
file_location = filedialog.askopenfilename()
a=file_location.split('/')
path=[]
for i in range(0,len(a)-1):
path.append(a[i])
path= "/".join(path)
filename=a[len(a)-1]
qst=messagebox.askyesno("Multiple Import","Do you want to import all .txt files in this folder?")
if qst==True:
# Gets all .txt files in path FOLDER
b=glob.glob(path + "/*.txt")
allFiles.append(b)
qst=messagebox.askyesno("Multiple Import","Do you want to import more DATA?")
else:
b=(path + "/"+ filename)
allFiles.append(b)
qst=messagebox.askyesno("Multiple Import","Do you want to import more DATA?")
else:
finish=1
return(allFiles)
file_location=import_multiple_files()
脚本/函数返回完整路径和文件名,但是,由于某种原因,某些名称带有双反斜杠
e.g,
file_location
[['C:/Users/user/Desktop/New Folder (2)\\1.txt',
'C:/Users/user/Desktop/New Folder (2)\\2.txt',
'C:/Users/user/Desktop/New Folder (2)\\3.txt'],
['C:/Users/user/Desktop/New Folder (3)/1.txt']] # For this last file, I did not select the option of importing all files.
任何人都可以这么好看看这个脚本,看看是否有问题,或者这只是Python显示事物的方式。
提前谢谢!
答案 0 :(得分:0)
\\
就是Python显示转义反斜杠的方式。 \
在许多上下文中用于表示新行(\n
),制表符(\t
)等。因此\\
只表示反斜杠后出现的内容不是这些特殊人物之一。
Python会理解你的前向和后向混合,但是如果你想让所有内容一致显示,你可以使用[os.path.abspath(d) for d in my_list]
。
此外,如果您想避免创建列表列表,您似乎应该使用extend
而不是append
。
答案 1 :(得分:0)
这是" final"版本
谢谢大家!
此函数检索文件夹中1个或所有文件的文件位置。
def import_multiple_files():
# 'similar' to UIGETFILE
import tkinter as tk
from tkinter import filedialog
from tkinter import messagebox
import glob
import os
# Creates a Tkinter window to search for a file
root = tk.Tk()
root.withdraw()
root.attributes("-topmost", True)
root.lift()
file_location = filedialog.askopenfilename()
a=file_location.split('/')
# Separates the file location into path and file name
path=[]
for i in range(0,len(a)-1):
path.append(a[i])
path= "/".join(path)
filename=a[len(a)-1]
# Questions the user
qst=messagebox.askyesno("Multiple Import","Do you want to import all .txt files in this folder?")
allFiles=[]
if qst==True:
# Gets all .txt files in path FOLDER
b=glob.glob(path + "/*.txt")
allFiles.extend(b)
else:
b=[(path + "/"+ filename)]
allFiles.extend(b)
# Questions the user
qst=messagebox.askyesno("Multiple Import","Do you want to import more DATA?")
# Allows the user to import as many files from as as many folders as he/she chooses
finish=0
while finish==0:
if qst==True:
# deletes all variables except "AllFILES" (location of all files to import)
del(root,file_location,a,path,qst,b)
root = tk.Tk()
root.withdraw()
root.attributes("-topmost", True)
root.lift()
file_location = filedialog.askopenfilename()
a=file_location.split('/')
path=[]
for i in range(0,len(a)-1):
path.append(a[i])
path= "/".join(path)
filename=a[len(a)-1]
qst=messagebox.askyesno("Multiple Import","Do you want to import all .txt files in this folder?")
if qst==True:
# Gets all .txt files in path FOLDER
b=glob.glob(path + "/*.txt")
allFiles.extend(b)
qst=messagebox.askyesno("Multiple Import","Do you want to import more DATA?")
else:
b=[(path + "/"+ filename)]
allFiles.extend(b)
qst=messagebox.askyesno("Multiple Import","Do you want to import more DATA?")
else:
finish=1
b=[os.path.abspath(d) for d in allFiles]
# Returns all file locations
return(b)