Raised This Month: $ Target: $400
 0% 

nVault backup


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
Bugsy
AMX Mod X Moderator
Join Date: Feb 2005
Location: NJ, USA
Old 12-18-2018 , 22:07   Re: nVault backup
Reply With Quote #7

PHP Code:
public bool:copy_file( const szSourceFile[] , const szDestFile[] )
{
    new 
iSource iDest iBytesRead bytBuffer1024 ];
    
    if ( ( 
iSource fopenszSourceFile "rb" ) ) && ( iDest fopenszDestFile "wb" ) ) )
    {
        while ( ( 
iBytesRead fread_blocksiSource bytBuffer sizeofbytBuffer ) , BLOCK_BYTE ) ) )
        {
            
fwrite_blocksiDest bytBuffer iBytesRead BLOCK_BYTE );
        }
        
        
fcloseiSource );
        
fcloseiDest );
    }
    
    return 
bool:( iSource && iDest );

__________________
Bugsy is offline
 



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 07:30.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode