<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de-AT">
	<id>https://becomwiki.live.md-websolutions.com/index.php?action=history&amp;feed=atom&amp;title=File_system_management_%28BLACKSheep_OS%29</id>
	<title>File system management (BLACKSheep OS) - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://becomwiki.live.md-websolutions.com/index.php?action=history&amp;feed=atom&amp;title=File_system_management_%28BLACKSheep_OS%29"/>
	<link rel="alternate" type="text/html" href="https://becomwiki.live.md-websolutions.com/index.php?title=File_system_management_(BLACKSheep_OS)&amp;action=history"/>
	<updated>2026-05-13T14:10:00Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in BECOM Systems Support</subtitle>
	<generator>MediaWiki 1.43.5</generator>
	<entry>
		<id>https://becomwiki.live.md-websolutions.com/index.php?title=File_system_management_(BLACKSheep_OS)&amp;diff=276&amp;oldid=prev</id>
		<title>Peter: 1 Version importiert</title>
		<link rel="alternate" type="text/html" href="https://becomwiki.live.md-websolutions.com/index.php?title=File_system_management_(BLACKSheep_OS)&amp;diff=276&amp;oldid=prev"/>
		<updated>2023-10-31T08:03:08Z</updated>

		<summary type="html">&lt;p&gt;1 Version importiert&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;de-AT&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Nächstältere Version&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Version vom 31. Oktober 2023, 10:03 Uhr&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;de-AT&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(kein Unterschied)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Peter</name></author>
	</entry>
	<entry>
		<id>https://becomwiki.live.md-websolutions.com/index.php?title=File_system_management_(BLACKSheep_OS)&amp;diff=275&amp;oldid=prev</id>
		<title>en&gt;Peter: 1 Version importiert</title>
		<link rel="alternate" type="text/html" href="https://becomwiki.live.md-websolutions.com/index.php?title=File_system_management_(BLACKSheep_OS)&amp;diff=275&amp;oldid=prev"/>
		<updated>2023-08-22T19:35:50Z</updated>

		<summary type="html">&lt;p&gt;1 Version importiert&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;= Introduction =&lt;br /&gt;
The files system driver hides the specific architecture of the device and file system management from the user. From the users point of view all devices have a common interface. The user can call standard I/O functions as &amp;lt;code&amp;gt;fopen&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;fclose&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;fread&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;fwrite&amp;lt;/code&amp;gt; to access the devices. Each devices is addressed by a path. The path consists of the partition name followed by a colon and the path in Microsoft Windows style.&lt;br /&gt;
&lt;br /&gt;
== Naming convention ==&lt;br /&gt;
The style of the path naming is associated to Microsoft Windows. A possible path on the SD Memory Card could be: {{path|sd0:\samplepath1\samplepath2}}&lt;br /&gt;
&lt;br /&gt;
= File System Manager =&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Files associated&amp;#039;&amp;#039;&amp;#039;: {{path|fsmgr.c}}, {{path|fsmgr.h}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Directories&amp;#039;&amp;#039;&amp;#039;: {{path|BLACKSheep/common/fs}}&lt;br /&gt;
&lt;br /&gt;
The file system manager manages different file systems. Each file-system has to be registered at the file system manager to be known at the system. The example shows how to register a file-system to the file system manager and how a partition is mounted into the system.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Example&amp;#039;&amp;#039;&amp;#039;:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;c&amp;quot;&amp;gt;&lt;br /&gt;
// registering the fat file system&lt;br /&gt;
fs_register(&amp;quot;fat&amp;quot;, fat_getFileFunctions() );&lt;br /&gt;
&lt;br /&gt;
// mounting a sd-card partitionformattet with the FAT file system&lt;br /&gt;
// The partition name is sd0&lt;br /&gt;
fs_mountPartition(&amp;quot;sd0&amp;quot;, &amp;quot;sd0&amp;quot;, &amp;quot;fat&amp;quot;);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Prior to use any functionality of the file system manager he has to be initialized by calling the &amp;lt;code&amp;gt;fs_setup&amp;lt;/code&amp;gt; function.&lt;br /&gt;
&lt;br /&gt;
= [https://www.freedos.org/ FreeDOS] FAT driver =&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Directories&amp;#039;&amp;#039;&amp;#039;: {{path|BLACKSheep/common/fs}}, {{path|BLACKSheep/common/fs/fat}}&lt;br /&gt;
&lt;br /&gt;
The FAT driver is a full featured driver for FAT12/16/32 based on the [https://www.freedos.org/ FreeDOS] FAT driver. Please refer to the FreeDOS FAT driver documentation.&lt;br /&gt;
&lt;br /&gt;
The FAT driver supports long file names for FAT32 but also the long file name extension for  FAT16.&lt;br /&gt;
&lt;br /&gt;
= [https://www.fullfat-fs.co.uk/ FullFAT] driver =&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Directories&amp;#039;&amp;#039;&amp;#039;: {{path|BLACKSheep/common/fs}}, {{path|BLACKSheep/common/fs/fullfat}}&lt;br /&gt;
&lt;br /&gt;
The main features of FullFAT are:&lt;br /&gt;
* 100% FAT12, FAT16, and FAT32 compatible.&lt;br /&gt;
* Supports Multi-Threaded and Single Threaded applications.&lt;br /&gt;
* Platform Independent Architecture&lt;br /&gt;
* Modular Design, allows unrequired features to be removed.&lt;br /&gt;
* Multiple Concurrent open files.&lt;br /&gt;
* Fully featured API.&lt;br /&gt;
* API compatible with E-FS.&lt;br /&gt;
* High Performance&lt;br /&gt;
&lt;br /&gt;
More informations are avaiable at the [https://wiki.fullfat-fs.co.uk/Main_Page FullFAT Wiki] website.&lt;br /&gt;
&lt;br /&gt;
[[Category:BLACKSheep OS Documentation]]&lt;/div&gt;</summary>
		<author><name>en&gt;Peter</name></author>
	</entry>
</feed>