- Added support for 64-bit LBA and GUID partition table (FF_LBA64 = 1) - Changed some API functions, f_mkfs() and f_fdisk(). - Fixed f_open() function cannot find the file with file name in length of FF_MAX_LFN characters. - Fixed f_readdir() function cannot retrieve long file names in length of FF_MAX_LFN - 1 characters. - Fixed f_readdir() function returns file names with wrong case conversion. (appeared at R0.12) - Fixed f_mkfs() function can fail to create exFAT volume in the second partition. (appeared at R0.12)
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*----------------------------------------------------------------------/
 | |
| / Test if the file is contiguous                                        /
 | |
| /----------------------------------------------------------------------*/
 | |
| 
 | |
| FRESULT test_contiguous_file (
 | |
|     FIL* fp,    /* [IN]  Open file object to be checked */
 | |
|     int* cont   /* [OUT] 1:Contiguous, 0:Fragmented or zero-length */
 | |
| )
 | |
| {
 | |
|     DWORD clst, clsz, step;
 | |
|     FSIZE_t fsz;
 | |
|     FRESULT fr;
 | |
| 
 | |
| 
 | |
|     *cont = 0;
 | |
|     fr = f_lseek(fp, 0);            /* Validates and prepares the file */
 | |
|     if (fr != FR_OK) return fr;
 | |
| 
 | |
| #if FF_MAX_SS == FF_MIN_SS
 | |
|     clsz = (DWORD)fp->obj.fs->csize * FF_MAX_SS;    /* Cluster size */
 | |
| #else
 | |
|     clsz = (DWORD)fp->obj.fs->csize * fp->obj.fs->ssize;
 | |
| #endif
 | |
|     fsz = f_size(fp);
 | |
|     if (fsz > 0) {
 | |
|         clst = fp->obj.sclust - 1;  /* A cluster leading the first cluster for first test */
 | |
|         while (fsz) {
 | |
|             step = (fsz >= clsz) ? clsz : (DWORD)fsz;
 | |
|             fr = f_lseek(fp, f_tell(fp) + step);    /* Advances file pointer a cluster */
 | |
|             if (fr != FR_OK) return fr;
 | |
|             if (clst + 1 != fp->clust) break;       /* Is not the cluster next to previous one? */
 | |
|             clst = fp->clust; fsz -= step;          /* Get current cluster for next test */
 | |
|         }
 | |
|         if (fsz == 0) *cont = 1;    /* All done without fail? */
 | |
|     }
 | |
| 
 | |
|     return FR_OK;
 | |
| }
 |