Move-File: Can't move certain Files to another Folder!
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Malte Räuchle
el 6 de Jul. de 2020
Comentada: Malte Räuchle
el 7 de Jul. de 2020
Hello! I want to extract some Files based on a certain criteria (here: bytes < 70 000 000). But I don't get it to work, some Ideas?
This is my approach so far..
files_zum_Testen = dir('...\MOVE_MDF\*.mf4');
move_bedingung = [files_zum_Testen.bytes] < 70000000;
move_list = fullfile({files_zum_Testen(move_bedingung).folder}, {files_zum_Testen(move_bedingung).name});
movefile (move_list, newFolder)
1 comentario
Stephen23
el 6 de Jul. de 2020
You will need to use a loop, and move each file separately.
The movefile documentation describes its source input as one character vector or string scalar, It does not state that the source can be a cell array of character vectors or a non-scalar string.
It states that multiple files can be matched using the wildcard *. But because you want to match on some other property (not using a wildcard) you will have to call movefile for each file.
Respuesta aceptada
Geoff Hayes
el 6 de Jul. de 2020
Malte - you haven't posted the error message or describe fully what you mean by I don't get it to work. According to movefile input arguments, the source is a character vector corresponding to a single file or directory. I don't think that passing in a cell array (list of files) will work and so you will need to move each file individually.
7 comentarios
Stephen23
el 7 de Jul. de 2020
Editada: Stephen23
el 7 de Jul. de 2020
"And I have no explanation for it.."
Your approach means that when the logical scalar fileToMove is false then you are generating comma-separated lists with zero outputs, and so fullfile has zero input arguments. That causes the error. While you could make this approach work (e.g. use if and you need to use index k rather than a logical scalar to select from files_zum_Testen) it would likely be simpler and clearer to use the logical array to filter the required files before the loop, e.g.:
D = '...\MOVE_MDF';
S = dir(fullfile(D,'*.mf4'));
X = [S.bytes] < 70000000;
C = {S(X).name}; % filter here!
for k = 1:numel(C)
F = fullfile(D,C{k});
movefile(F, newFolder)
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Biological and Health Sciences en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!