Separate path string into drive and folders
Mostra commenti meno recenti
Hi,
using fileparts brings the path, the name and the exentension of a fullfile (e.g., C:\user\files\myFile.txt). Is there a function that separates the path into drive and folders, so that drive = 'C:' folder1 = 'user' folder2 = 'files' ?
Thx, Philipp
Risposta accettata
Più risposte (2)
Christian Schwermer
il 9 Set 2018
The shortest solution is to split the string using filesep as delimeter. filesep returns the platform-specific file separator "\" or "/".
pathparts = strsplit(s,filesep);
Dominique
il 19 Lug 2023
path = uigetdir()
foldername = strsplit(path,"\");
foldername = foldername(end);
Categorie
Scopri di più su Filename Construction in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!