BTFS is very beta!


after mounting the filesystem you see the following tree:

/CFG/
/CFG/inquiry_duration
/CFG/cache_time
/CFG/SCAN_NOW
/OPUSH/
/DEVICES/


CFG is used for configuration purposes, the files inside control various
runtime parameters like the duration of a bluetooth inquiry and the lifetime
of the device cache. Also a device scan/inquiry can be forced by touching the
SCAN_NOW file. Just use cat and echo to read and write the configuration files. 
Don't use an editor! 

examples:
	cat /CFG/inquiry_duration
	 gives you: 7 (seconds) as the inquiry scan duration

	echo -n 20 >/CFG/inquiry_duration
	 sets the inquiry duration to 20 seconds


DEVICES just lists all seen devices by their BD_ADDR.

example:
	ls -la /DEVICES
	 gives you:
	  /DEVICES/00:12:34:56:78
	  /DEVICES/00:AB:CD:EF:AA
	  /DEVICES/00:1A:2B:3C:4D


OPUSH lists all devices which support OBEX Push (which have a OPUSH SDP 
record) by their devicenames. You can copy files into the directorys to send
them to the device (only one file at the time!). You can only send files to
the devices! You can't receive files from the devices!

examples:
	ls -la /OPUSH
	 gives you:
	  /OPUSH/CollinsPhone
	  /OPUSH/myPalm

	cp somefile.txt /OPUSH/myPalm
	 sends the file "somefile.txt" via OBEX to the device myPalm
