Borrar filtros
Borrar filtros

Share content from Matlab cloud drive

7 visualizaciones (últimos 30 días)
Tero
Tero el 13 de Nov. de 2023
Respondida: Dheeraj el 28 de Jun. de 2024 a las 6:10
Hello,
is it possible to perform the following actions from matlab command prompt?
  • Create a folder in Matlab Drive
  • Upload files into the folder
  • Share the folder
  • Get the link for sharing
I'd like to get these things done by a script, so I could then just send the sharing link via email
Thanks all,
Tero

Respuesta aceptada

Dheeraj
Dheeraj el 28 de Jun. de 2024 a las 6:10
Hi Tero,
I understand you want to automate the entire process of uploading a file to MATLAB Drive and generating a shareable link.
Unfortunately, there is currently no way to generate a shareable link directly through the MATLAB command window. However, you can create and upload folders and files to your MATLAB Drive. Here is an example to do that:
% Define the folder name and path
folderName = 'nameOfTheFolderToSHare';
folderPath = fullfile(matlabdrive, folderName);
% Create the folder in MATLAB Drive
if ~exist(folderPath, 'dir')
mkdir(folderPath);
end
% Define the files to be uploaded (change to your file paths)
filePaths = {'/path/to/your/file1.m', '/path/to/your/file2.m'};
% Upload files to the created folder
for i = 1:length(filePaths)
[~, fileName, ext] = fileparts(filePaths{i});
destination = fullfile(folderPath, [fileName, ext]);
copyfile(filePaths{i}, destination);
end
To share the folder and generate a shareable link and manage user permissions for the link you still have to use the MATLAB UI.
To know more about managing files and folders in MATLAB you could refer to the below MATLAB's documentation.

Más respuestas (0)

Categorías

Más información sobre Cloud Integrations en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by