我正在尝试从我创建的iMacro调用批处理文件。 我运行一个.js脚本,运行几个.iims然后执行 .bat文件。
.bat文件从.txt文件中删除前5行并再次保存。 .txt将在下一个脚本运行中使用。 - 我正在使用for循环 -
所以我的问题是: 如何从我的.js脚本中执行此.bat文件? 是否可以编写一个代码来删除这个特定.txt的前5行? (然后我不需要.bat)
//我正在运行Windows 10而我正在使用Firefox
感谢您帮助我!
答案 0 :(得分:0)
在类似情况下,使用txt文件似乎更为可取。试试这样的脚本:
def upload_file():
if request.method == 'POST':
# check if the post request has the file part
if 'file' not in request.files:
flash('No file part')
return redirect(request.url)
file = request.files['file']
# if user does not select file, browser also
# submit a empty part without filename
if file.filename == '':
flash('No selected file')
return redirect(request.url)
if file and allowed_file(file.filename):
filename = secure_filename(file.filename)
file.save(os.path.join(app.config['UPLOAD_FOLDER'], filename))
#return to the file or what do you want
return redirect(url_for('uploaded_file',
filename=filename))
注意:您的txt文件必须采用UTF-8编码。