writetable() has write permission problems when run as scheduled task; save() does not

136 vues (au cours des 30 derniers jours)
I have a script that checks a folder for accumulating images, processes them, and builds a table of data about the images. The script then saves the table in two ways: first, as a .mat file via the MATLAB save() function, and then as an Excel spreadsheet via the writetable() function into the very same folder.
The script works perfectly in an interactive MATLAB window.
However, when I try to run the script via Windows' Task Scheduler, the writetable part fails due to a permissions error while the save() works just fine to the very same location. I have given the scheduled task my user credentials, and the fact that the .mat file gets written suggests to me that the script has write permission the folder. writetable chokes, however.
The error I get (seen via the -logfile parameter to MATLAB in the scheduled task) is:
Unable to save the workbook to file 'D:\ImageList2017-03-30.xlsx'. Check
that write permissions are available, there is sufficient disk space, and
the file can be written to or created.
And the error points to:
C:\Program Files\MATLAB\R2016b\toolbox\matlab\iofun\writetable.m line 121.
This is on Windows 7, writing to a local disk (eventually I want it to work with an UNC path to a shared folder), using MATLAB R2016b.
Ideas?
Edit for additional information: I changed the filetype of the file being written by writetable() to be .txt, and that worked just fine with no permission errors. So this seems to be an issue with writing .xlsx. Is Microsoft Office misbehaving here?
  3 commentaires
Jan
Jan le 31 Mar 2017
Please post this as an answer.
Victor Villar
Victor Villar le 24 Mai 2019
Modifié(e) : Victor Villar le 24 Mai 2019
Maybe this could help:
https://www.mathworks.com/matlabcentral/answers/463778-windows-task-scheduler-does-not-produce-any-output-when-setting-tasks-with-xlswrite

Connectez-vous pour commenter.

Réponse acceptée

Scott
Scott le 3 Fév 2020
I found a bizarre, totally non-intuitive solution that worked. From Technet.microsoft.com
You have to create a folder (or two on a 64bit-windows):
(32Bit, always)
C:\Windows\System32\config\systemprofile\Desktop
(64Bit)
C:\Windows\SysWOW64\config\systemprofile\Desktop
I have had the same problem and this was the only solution i have found.
After creating the two above-named folders, the MATLAB script's writetable() call now correctly creates the .xlsx file.
  2 commentaires
Zeynab Mousavikhamene
Zeynab Mousavikhamene le 18 Juin 2020
I pefromed above solution and it did not work. Then I shortened the address and it worked. It seems there is a limitation in the size of the address.
Ismaeel
Ismaeel le 14 Jan 2022
Modifié(e) : Ismaeel le 14 Jan 2022
The second note mentioned by Zeynab Mousavikhamene worked for me. I was trying to save my table to (C:\Program Files\New Folder) and it did not work. I changed to C:\New_Folder (with no space) and it worked just fine. Thank you Zeynab and Scott for your contributions.

Connectez-vous pour commenter.

Plus de réponses (2)

Ahmed Rashid
Ahmed Rashid le 31 Jan 2020
The error might also occur if the folder, in which the file is supposed to be save, does not exist.

Derek Smith
Derek Smith le 23 Sep 2022
As the exact filename you are attempting to write is not given, I figure I can lend my $0.02. My problem was that, when trying to name a file according to a date, I did not format the date to remove colon markers. Once these illegal characters were removed, there was no problem.

Catégories

En savoir plus sur Startup and Shutdown dans Help Center et File Exchange

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by