Lines Matching refs:xSFI
205 static com::sun::star::uno::Reference< XSimpleFileAccess3 > xSFI; in getFileAccess() local
206 if( !xSFI.is() ) in getFileAccess()
211 xSFI = com::sun::star::uno::Reference< XSimpleFileAccess3 >( xSMgr->createInstance in getFileAccess()
215 return xSFI; in getFileAccess()
578 com::sun::star::uno::Reference< XSimpleFileAccess3 > xSFI = getFileAccess(); in implStepRenameUCB() local
579 if( xSFI.is() ) in implStepRenameUCB()
584 if( !xSFI->exists( aSourceFullPath ) ) in implStepRenameUCB()
591 if( xSFI->exists( aDestFullPath ) ) in implStepRenameUCB()
594 xSFI->move( aSourceFullPath, aDestFullPath ); in implStepRenameUCB()
626 com::sun::star::uno::Reference< XSimpleFileAccess3 > xSFI = getFileAccess(); in RTLFUNC() local
627 if( xSFI.is() ) in RTLFUNC()
631 xSFI->copy( getFullPath( aSource ), getFullPath( aDest ) ); in RTLFUNC()
677 com::sun::star::uno::Reference< XSimpleFileAccess3 > xSFI = getFileAccess(); in RTLFUNC() local
678 if( xSFI.is() ) in RTLFUNC()
681 if( !xSFI->exists( aFullPath ) || xSFI->isFolder( aFullPath ) ) in RTLFUNC()
688 xSFI->kill( aFullPath ); in RTLFUNC()
724 com::sun::star::uno::Reference< XSimpleFileAccess3 > xSFI = getFileAccess(); in RTLFUNC() local
725 if( xSFI.is() ) in RTLFUNC()
729 xSFI->createFolder( getFullPath( aPath ) ); in RTLFUNC()
825 com::sun::star::uno::Reference< XSimpleFileAccess3 > xSFI = getFileAccess(); in RTLFUNC() local
826 if( xSFI.is() ) in RTLFUNC()
830 if( !xSFI->isFolder( aPath ) ) in RTLFUNC()
839 Sequence< ::rtl::OUString > aContent = xSFI->getFolderContents( aPath, true ); in RTLFUNC()
848 xSFI->kill( getFullPath( aPath ) ); in RTLFUNC()
912 com::sun::star::uno::Reference< XSimpleFileAccess3 > xSFI = getFileAccess(); in RTLFUNC() local
913 if( xSFI.is() ) in RTLFUNC()
917 nLen = xSFI->getSize( getFullPath( aStr ) ); in RTLFUNC()
2656 com::sun::star::uno::Reference< XSimpleFileAccess3 > xSFI = getFileAccess(); in RTLFUNC() local
2657 if( xSFI.is() ) in RTLFUNC()
2667 try { bExists = xSFI->exists( aFileURLStr ); } in RTLFUNC()
2684 sal_Bool bFolder = xSFI->isFolder( aFileURLStr ); in RTLFUNC()
2704 pRTLData->aDirSeq = xSFI->getFolderContents( aDirURLStr, bIncludeFolders ); in RTLFUNC()
2763 sal_Bool bFolder = xSFI->isFolder( aFile ); in RTLFUNC()
2773 sal_Bool bFolder = xSFI->isFolder( aFile ); in RTLFUNC()
2991 com::sun::star::uno::Reference< XSimpleFileAccess3 > xSFI = getFileAccess(); in RTLFUNC() local
2992 if( xSFI.is() ) in RTLFUNC()
2998 try { bExists = xSFI->exists( aPath ); } in RTLFUNC()
3006 sal_Bool bReadOnly = xSFI->isReadOnly( aPath ); in RTLFUNC()
3007 sal_Bool bHidden = xSFI->isHidden( aPath ); in RTLFUNC()
3008 sal_Bool bDirectory = xSFI->isFolder( aPath ); in RTLFUNC()
3061 com::sun::star::uno::Reference< XSimpleFileAccess3 > xSFI = getFileAccess(); in RTLFUNC() local
3062 if( xSFI.is() ) in RTLFUNC()
3066 com::sun::star::util::DateTime aUnoDT = xSFI->getDateTimeModified( aPath ); in RTLFUNC()
4353 com::sun::star::uno::Reference< XSimpleFileAccess3 > xSFI = getFileAccess(); in RTLFUNC() local
4354 if( xSFI.is() ) in RTLFUNC()
4359 xSFI->setReadOnly( aStr, bReadOnly ); in RTLFUNC()
4361 xSFI->setHidden( aStr, bHidden ); in RTLFUNC()
4457 com::sun::star::uno::Reference< XSimpleFileAccess3 > xSFI = getFileAccess(); in RTLFUNC() local
4458 if( xSFI.is() ) in RTLFUNC()
4462 bExists = xSFI->exists( aStr ); in RTLFUNC()