mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-10-31 18:15:09 +00:00 
			
		
		
		
	
		
			
	
	
		
			12 lines
		
	
	
		
			200 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
		
		
			
		
	
	
			12 lines
		
	
	
		
			200 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
|   | import 'dart:io'; | ||
|  | 
 | ||
|  | extension FileSizeExtension on String { | ||
|  |   int? get fileSize { | ||
|  |     final file = File(this); | ||
|  |     if (file.existsSync()) { | ||
|  |       return file.lengthSync(); | ||
|  |     } | ||
|  |     return null; | ||
|  |   } | ||
|  | } |