Page 1 of 1

File sharing

Posted: January 5th, 2018, 7:14 am
by Yihun_Shegnew
Dear user forum,

I want to know is it possible to send files like .pdf and others file type via bluetooth from supervisor to enumerator outside the pen? In the synfile just like sending csdb file when we put the pdf file when supervisor sync everytime the pdf files also send to enumerator and its unwanted. So how to send the resources to the enumerator?

Thanks

Re: File sharing

Posted: January 5th, 2018, 8:25 am
by khurshid.arshad
Dear Yihun;

For this, i will use options. Like

1. syn PDF only
2. syn data file only
3. syn PDF and data file.

Code: Select all

	If option 1 then
		syncfile(PUT,"Data/*.pdf","/data");
	elseIf option 2 then
		syncfile(PUT,"Data/*.dat","/data");
	elseIf option 3 then
		syncfile(PUT,"Data/*.*","/data");
	else
	endif;

Best.
a.