我正在运行Flask应用,其中用户上传文件,并且必须选择在网络驱动器上上载文件的位置的根文件夹路径。此路径是IIS可用的网络路径,也是所有用户计算机上的网络驱动器。
我希望动态显示HTML中的可用文件夹,即使在应用启动后创建了新文件夹。
我知道由于安全性,这不能用纯HTML完成,但想知道Flask是否有办法解决这个问题。目标是使用Python将上传文件移动到选择的文件夹路径。
我试过了:
<form><input type="file" name=dir webkitdirectory directory multiple/></form>
但这仅适用于Chrome。通过用户选择的路径,我可以将其传递给Python,将上传文件复制到那里。
答案 0 :(得分:2)
由于现代浏览器的限制,我决定使用JSTree作为解决方案。而且它运作良好。它具有树形结构浏览器。该结构是将文件夹输出为JSON的结果。您也可以添加搜索栏,以便用户只需键入要搜索的文件夹名称即可 请参阅JSTree https://www.jstree.com/
如何使用Flask实现此功能
<强> HTML / JS:强>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.2.1/themes/default/style.min.css">
<div>
<input class="search-input form-control" placeholder="Search for folder"></input>
</div>
<script id="jstree1" name="jstree1">
/*Search and JS Folder Tree*/
$(function () {
$(".search-input").keyup(function () {
var searchString = $(this).val();
console.log(searchString);
$('#container').jstree('search', searchString);
});
$('#container').jstree({
'core': {
"themes": {
"name": "default"
, "dots": true
, "icons": true
}
, 'data': {
'url': "static/JSONData.json"
, 'type': 'GET'
, 'dataType': 'JSON'
}
}
, "search": {
"case_insensitive": true
, "show_only_matches": true
}
, "plugins": ["search"]
});
});
{ /* --- THIS IS FOLDER SELECTOR FOR ID "folderout" --- */
$("#container").on("select_node.jstree", function (evt, data) {
var number = data.node.text
document.getElementById("folderout").value = number;
});
在Flask / WTForms 中调用id&#34; folderout&#34;。当用户单击文件夹时,这将返回WTForms的路径。
folderout = TextField('Folder:', validators=[validators.required()])
使用Python创建JSON JStree文件:
import os
# path : string to relative or absolute path to be queried
# subdirs: tuple or list containing all names of subfolders that need to be
# present in the directory
def all_dirs_with_subdirs(path, subdirs):
# make sure no relative paths are returned, can be omitted
path = os.path.abspath(path)
result = []
for root, dirs, files in os.walk(path):
if all(subdir in dirs for subdir in subdirs):
result.append(root)
return result
def get_directory_listing(path):
output = {}
output["text"] = path.decode('latin1')
output["type"] = "directory"
output["children"] = all_dirs_with_subdirs(path, ('Maps', 'Reports'))
return output
with open('test.json', 'w+') as f:
listing = get_directory_listing(".")
json.dump(listing, f)
答案 1 :(得分:1)
Python 在您的服务器上运行,因此无法使用它来移动客户端上的文件。如果你考虑一下,让我们假设你设法以某种方式(神奇地)向客户端发送python命令来移动文件,你知道他们是否安装了python以便能够解释你的命令吗?
另一方面,Javascript 在客户端运行,并用于实现此目的。但是,就像你说的那样,由于安全原因,现代的浏览器不允许这样做。如果他们允许,那么任何网站都可能会看到您的整个文件系统。
这是一个article,它解释了一些原因。查看它的“文件上载控制”部分。希望这会让事情变得更加清晰。
编辑:看到您的评论后,您可以使用os.walk实现这一点。请注意它可能很慢。
for root, dirs, files in os.walk(rootPath): # for example "C:/Users/"
for file in files:
if file == (wantedFile):
print(os.path.join(root,file))
break