The Qfile crate provides functionality for accessing a file by path, case-insensitive, including automatic detection, creation of a path with a new file or opening an existing file. It includes several submodules to handle different aspects of file handling, such as initialization, reading, and writing. The crate also defines some custom errors related to file operations.
qfile is not the rust version of qfile from the QT framework
rust
let path1 = "File.txt";
let path2 = "./File.txt";
let path3 = "../../File.txt";
let path4 = String::from("Folder/Folder/File.txt");
rust
let path1 = "File.txt";
let path2 = ".\\File.txt";
let path3 = "..\\..\\File.txt";
let path4 = "D:\\Folder\\file.txt";
let path5 = r"D:\Folder\file.txt";
let path6 = String::from("D:\\Folder\\file.txt");
Methods to read, write, get the right path are case insensitive
This is the method that kicks off the directory search. It takes in the search location, names of files to search for, excluded directories, whether or not to follow symbolic links, and a channel to send the results back on.
It uses the rayon crate to parallelize the search over multiple threads for better performance.
The algorithm first filters out the excluded directories, and then iterates through the remaining directories to find all the files that match the specified search criteria. If a match is found, the path of the file is sent to the Sender object.
```rust use qfile::{QFilePath,Directory}; use std::sync::mpsc;
let (tx, rx) = mpsc::channel(); QFilePath::findpaths( // specifies the directories to search from, where the search should start. Directory::ThisPlace(vec!["src", "anotherfolder", "/home/user/myproject"]), // names of items to search in the file system vec!["main.rs", "lib.rs", "photo-1-2.jpg"], // folders to exclude search Some(vec!["src/tests", "anotherfolder/tmp"]), // follow links false, // Sender channel tx, )?; for path in rx { println!("{}", path.display().to_string()); } ```
The method for writing to a file depends on the current context, case insensitive * If the file exists - overwrites all the content with the new content * If file does not exist - creates files and, if necessary, all parent folders specified in the path. After that writes the new content
```rust use qfile::{QFilePath, QTraitSync};
// real path : myFolder/file.txt let mut file = QFilePath::addpath("MyFolder/file.TXT")?; file.writeonlynew("text1 text1 text1")?; file.writeonly_new("text2 text2 text2")?; ```
rust
use qfile::{QFilePath, QTraitAsync};
// real path : myFolder/file.txt
let mut file = QFilePath::async_add_path("MyFolder/file.TXT").await?;
file.lock().await.auto_write("text1 text1 text1").await?;
file.lock().await.auto_write("text2 text2 text2").await?;
If the path exists, we work with the file
| | Linux | Windows |
| -------------------------- | ---------------------------- | ---------------------------- |
| The path we specified: | folder1/FolDER2/file.TXT
| folder1\FolDER2\file.TXT
|
| Real path : | ./Folder1/Folder2/file.txt
| .\Folder1\Folder2\file.txt
|
| Result : | ./Folder1/Folder2/file.txt
| .\Folder1\Folder2\file.txt
|
If the file/path is not found, creates a new path with the file
| | Linux | Windows |
| -------------------------- | ----------------------------------- | ----------------------------------- |
| The path we specified: | ./main_folder/folder_new/file.txt
| .\main_folder\folder_new\file.txt
|
| Real path : | ./Main_Folder
| .\Main_Folder
|
| Result : | ./Main_Folder/folder_new/file.txt
| .\Main_Folder\folder_new\file.txt
|
- The Windows file system treats file and directory names as case insensitive.
file.txt
andFILE.txt
will be treated as equivalent files (Although the path is case insensitive in windows (..\FOLDER\file.txt
), you can return a case-sensitive path with :get_path_string()
orget_path_buf()
).
Method for reading the contents of a file (String
), case insensitive
```rust use qfile::{QFilePath, QTraitSync};
// real path : myFolder/file.txt let mut file = QFilePath::add_path("MyFolder/file.TXT")?; let text = file.read()?; println!("content: {}", text); ```
```rust use qfile::{QFilePath, QTraitAsync};
// real path : myFolder/file.txt let mut file = QFilePath::asyncaddpath("MyFolder/file.TXT").await?; file.lock().await.autowrite("text1 text1 text1").await?; file.lock().await.autowrite("text2 text2 text2").await?; ```