Subversion Repositories Kolibri OS

Rev

Rev 8868 | Rev 9471 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8868 Rev 8944
Line 81... Line 81...
81
	{
81
	{
82
		filename = i*304+dirbuf+72;
82
		filename = i*304+dirbuf+72;
83
		sprintf(#copy_from2,"%s/%s",from2,filename);
83
		sprintf(#copy_from2,"%s/%s",from2,filename);
84
		sprintf(#copy_in2,"%s/%s",in2,filename);
84
		sprintf(#copy_in2,"%s/%s",in2,filename);
Line 85... Line 85...
85
 
85
 
86
		if ( TestBit(ESDWORD[filename-40], 4) ) //dir_exists?
86
		if ( ESDWORD[filename-40] & ATR_FOLDER ) //dir_exists?
87
		{
87
		{
88
			if ( (!strncmp(filename, ".",1)) || (!strncmp(filename, "..",2)) ) continue;
88
			if ( (!strncmp(filename, ".",1)) || (!strncmp(filename, "..",2)) ) continue;
89
			CopyFolder(#copy_from2, #copy_in2);
89
			CopyFolder(#copy_from2, #copy_in2);
90
		}
90
		}