function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Pablo GarciaPablo Garcia 

Files in Salesforce1

I've create a VF page that creates a CSV file and after that it navigates to Files. In desktop version of Salesforce I can see the new file in the "Owned by Me" section in Files, but I cannot if a do the same in the Salesforce1 app. It seems like the files are not sync. 

I set the "Sync files" permission to my profile, but the result is the same.

Is there a way to see the files in Salesforce1?

This is the apex code where the file is created:
ContentVersion file = new ContentVersion(
            title = informe + EXCEL_EXTENSION,
            versionData = Blob.valueOf( csv ),
            pathOnClient = '/' + informe + EXCEL_EXTENSION // '.csv'
        );
        
        insert file;