我正在编写一个Spring应用程序,用户可以在其中上传稍后将再次提供的文件。
但是,存储文件的目录始终是临时位置(默认情况下),例如import os
fi = []
for root, dirs, files in os.walk("/"):
for file in files:
if file.endswith(('.html','.php')):
fi.append(os.path.join(root, file))
#print(os.path.join(root, file))
print fi[2]
# get all files and work on each file
for filename in fi:
with open(filename, 'r') as searchfile:
for line in searchfile:
if 'searchphrase' in line:
# do your pattern search here
。因此,每当重新启动应用程序时,将选择另一个路径,之前上载的所有文件都将丢失。
我无法弄清楚如何手动设置服务器的根目录。
我尝试在/tmp/tomcat-docbase.XYZ
中设置server.tomcat.basedir
,但这没有做到(猜测它只是错误的属性)..
那我错过了什么?在此先感谢:)