Home
last modified time | relevance | path

Searched refs:sNewFileName (Results 1 – 22 of 22) sorted by relevance

/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/core/filemanagerdol/connectors/php/
H A Dio.php356 * @param string $sNewFileName Folder
359 function SanitizeFileName($sNewFileName) argument
363 $sNewFileName = stripslashes($sNewFileName);
367 $sNewFileName = preg_replace('/\\.(?![^.]*$)/', '_', $sNewFileName);
370 $sNewFileName = preg_replace('/\\\\|\\/|\\||\\:|\\?|\\*|"|<|>|[[:cntrl:]]/', '_', $sNewFileName);
372 return $sNewFileName;
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/core/filemanagerdol/connectors/php/
H A Dio.php367 * @param string $sNewFileName Folder
370 function SanitizeFileName($sNewFileName) argument
374 $sNewFileName = stripslashes($sNewFileName);
378 $sNewFileName = preg_replace('/\\.(?![^.]*$)/', '_', $sNewFileName);
382 $sNewFileName = preg_replace('/\\\\|\\/|\\||\\:|\\?|\\*|"|<|>|[[:cntrl:]]/', '_', $sNewFileName);
384 return $sNewFileName;
/dports/www/moinmoin/moin-1.9.11/MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/php/
H A Dio.php266 function SanitizeFileName( $sNewFileName ) argument
270 $sNewFileName = stripslashes( $sNewFileName ) ;
274 $sNewFileName = preg_replace( '/\\.(?![^.]*$)/', '_', $sNewFileName ) ;
277 …$sNewFileName = preg_replace( '/\\\\|\\/|\\||\\:|\\;|\\?|\\*|"|<|>|[[:cntrl:]]/', '_', $sNewFileNa…
279 return $sNewFileName ;
/dports/irc/znc/znc-1.8.2/src/
H A DFileUtils.cpp210 bool CFile::Move(const CString& sNewFileName, bool bOverwrite) { in Move() argument
211 if (CFile::Move(m_sLongName, sNewFileName, bOverwrite)) return true; in Move()
216 bool CFile::Copy(const CString& sNewFileName, bool bOverwrite) { in Copy() argument
217 if (CFile::Copy(m_sLongName, sNewFileName, bOverwrite)) return true; in Copy()
226 bool CFile::Move(const CString& sOldFileName, const CString& sNewFileName, in Move() argument
228 if (CFile::Exists(sNewFileName)) { in Move()
237 return (::MoveFileExA(sOldFileName.c_str(), sNewFileName.c_str(), in Move()
242 return (rename(sOldFileName.c_str(), sNewFileName.c_str()) == 0); in Move()
247 if ((!bOverwrite) && (CFile::Exists(sNewFileName))) { in Copy()
253 CFile NewFile(sNewFileName); in Copy()
[all …]
/dports/mail/rainloop/rainloop-php74-1.16.0_1/rainloop/v/1.16.0/
H A Dinclude.php195 $sFile = $sNewFile = $sNewFileName = ''; variable
204 $sNewFileName = basename($sFile); variable
205 if ('default.ini.dist' !== $sNewFileName)
207 $sNewFile = APP_PRIVATE_DATA.'domains/'.$sNewFileName;
235 unset($aFiles, $sFile, $sNewFileName, $sNewFile);
/dports/mail/rainloop-community/rainloop-community-php74-1.16.0_1/rainloop/v/1.16.0/
H A Dinclude.php195 $sFile = $sNewFile = $sNewFileName = ''; variable
204 $sNewFileName = basename($sFile); variable
205 if ('default.ini.dist' !== $sNewFileName)
207 $sNewFile = APP_PRIVATE_DATA.'domains/'.$sNewFileName;
235 unset($aFiles, $sFile, $sNewFileName, $sNewFile);
/dports/irc/znc/znc-1.8.2/include/znc/
H A DFileUtils.h93 bool Move(const CString& sNewFileName, bool bOverwrite = false);
94 bool Copy(const CString& sNewFileName, bool bOverwrite = false);
97 static bool Move(const CString& sOldFileName, const CString& sNewFileName,
99 static bool Copy(const CString& sOldFileName, const CString& sNewFileName,
/dports/www/moinmoin/moin-1.9.11/MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/cfm/
H A Dcf_io.cfm288 <cfargument name="sNewFileName" required="true">
291 <cfset sNewFileName = rereplace( sNewFileName, '\.(?![^.]*$)', "_", "all" )>
296 …<cfset sNewFileName = rereplace( sNewFileName, '\\[.]+|\\+|\/+|\|+|\:+|\;+|\?+|\*+|"+|<+|>+|[[:cnt…
298 <cfreturn sNewFileName>
/dports/www/moinmoin/moin-1.9.11/MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/asp/
H A Dio.asp217 function SanitizeFileName( sNewFileName )
224 sNewFileName = oRegex.Replace( sNewFileName, "_" )
229 SanitizeFileName = oRegex.Replace( sNewFileName, "_" )
/dports/graphics/podofo/podofo-0.9.7/test/ObjectParserTest/
H A DObjectParserTest.cpp113 string sNewFileName = ss.str(); in WriteTempFile() local
116 f.open( sNewFileName.c_str(), ios_base::out|ios_base::trunc|ios_base::binary ); in WriteTempFile()
119 return sNewFileName; in WriteTempFile()
/dports/editors/libreoffice/libreoffice-7.2.6.2/dbaccess/source/core/misc/
H A Ddsntypes.cxx231 OUString sNewFileName; in extractHostNamePort() local
232 … if ( ::osl::FileBase::getFileURLFromSystemPath( sUrl, sNewFileName ) == ::osl::FileBase::E_None ) in extractHostNamePort()
234 _sDatabaseName = sNewFileName; in extractHostNamePort()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/dbaccess/source/core/misc/
H A Ddsntypes.cxx233 OUString sNewFileName; in extractHostNamePort() local
234 … if ( ::osl::FileBase::getFileURLFromSystemPath( sUrl, sNewFileName ) == ::osl::FileBase::E_None ) in extractHostNamePort()
236 _sDatabaseName = sNewFileName; in extractHostNamePort()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sw/source/uibase/misc/
H A Dglosdoc.cxx215 const OUString sNewFileName = lcl_CheckFileName(m_PathArr[nNewPath], in RenameGroupDoc() local
217 const OUString sNewFileURL = lcl_FullPathName(m_PathArr[nNewPath], sNewFileName); in RenameGroupDoc()
230 rNewGroup = sNewFileName + OUStringChar(GLOS_DELIM) + OUString::number(nNewPath); in RenameGroupDoc()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sw/source/uibase/misc/
H A Dglosdoc.cxx216 const OUString sNewFileName = lcl_CheckFileName(m_PathArr[nNewPath], in RenameGroupDoc() local
218 const OUString sNewFileURL = lcl_FullPathName(m_PathArr[nNewPath], sNewFileName); in RenameGroupDoc()
231 rNewGroup = sNewFileName + OUStringChar(GLOS_DELIM) + OUString::number(nNewPath); in RenameGroupDoc()
/dports/graphics/pencil2d/pencil-0.6.6/core_lib/src/structure/
H A Dobject.cpp733 QString sNewFileName = "sound_"; in copyFileToDataFolder() local
734 sNewFileName += QDateTime::currentDateTime().toString("yyyyMMdd_HHmmss_zzz."); in copyFileToDataFolder()
735 sNewFileName += QFileInfo(strFilePath).suffix(); in copyFileToDataFolder()
738 QString destFile = QDir(mDataDirPath).filePath(sNewFileName); in copyFileToDataFolder()
/dports/lang/perl5.34/perl-5.34.0/cpan/Win32API-File/
H A DFile.xs118 CopyFileA( sOldFileName, sNewFileName, bFailIfExists )
120 char * sNewFileName
123 RETVAL = CopyFileA( sOldFileName, sNewFileName, bFailIfExists );
/dports/lang/perl5.30/perl-5.30.3/cpan/Win32API-File/
H A DFile.xs117 CopyFileA( sOldFileName, sNewFileName, bFailIfExists )
119 char * sNewFileName
122 RETVAL = CopyFileA( sOldFileName, sNewFileName, bFailIfExists );
/dports/lang/perl5.32/perl-5.32.1/cpan/Win32API-File/
H A DFile.xs118 CopyFileA( sOldFileName, sNewFileName, bFailIfExists )
120 char * sNewFileName
123 RETVAL = CopyFileA( sOldFileName, sNewFileName, bFailIfExists );
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/cpan/Win32API-File/
H A DFile.xs118 CopyFileA( sOldFileName, sNewFileName, bFailIfExists )
120 char * sNewFileName
123 RETVAL = CopyFileA( sOldFileName, sNewFileName, bFailIfExists );
/dports/audio/audacity/audacity-Audacity-3.1.3/src/
H A DProjectFileManager.cpp708 wxString sNewFileName = fnFile.GetFullPath(); in SaveFromTimerRecording() local
720 if (wxFileExists(sNewFileName)) { in SaveFromTimerRecording()
724 auto success = DoSave(sNewFileName, true); in SaveFromTimerRecording()
/dports/editors/libreoffice/libreoffice-7.2.6.2/dbaccess/source/ui/dlg/
H A DDbAdminImpl.cxx472 OUString sNewFileName; in getConnectionURL() local
473 …if ( ::osl::FileBase::getSystemPathFromFileURL( sFileName, sNewFileName ) == ::osl::FileBase::E_No… in getConnectionURL()
475 sNewUrl += sNewFileName; in getConnectionURL()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/dbaccess/source/ui/dlg/
H A DDbAdminImpl.cxx478 OUString sNewFileName; in getConnectionURL() local
479 …if ( ::osl::FileBase::getSystemPathFromFileURL( sFileName, sNewFileName ) == ::osl::FileBase::E_No… in getConnectionURL()
481 sNewUrl += sNewFileName; in getConnectionURL()