Menu

FATFS_Pathname Log in to Edit

FATFS - Pathname Operations

Is_Separator

The following function returns True, when Ch represents a file separator ('' or '/'):

function Is_Separator(Ch : Character) return Boolean;

Filename_Index

The following function returns the String subscript of where the first file name character begins. The function skips over the directory portion of the Pathname:

function Filename_Index(Pathname : String) return Natural;

Parse_Filename

The following procedure parses Name into separate Base and Extension components according to the DOS 8.3 file naming convention (long file names are not supported):

procedure Parse_Filename(Base, Ext : out String; Name : String; OK : out Boolean);

Related

Wiki: Fatfs

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.