├── .gitignore ├── Directory_And_DirectoryInfo ├── .vscode │ ├── launch.json │ └── tasks.json ├── Directory_And_DirectoryInfo.csproj ├── Program.cs ├── brasil.txt └── globo │ └── América do Sul │ ├── Argentina │ └── argentina.txt │ └── Brasil │ └── brasil.txt ├── FileSystemWatcher ├── .vscode │ ├── launch.json │ └── tasks.json ├── FileSystemWatcher.csproj └── Program.cs ├── File_And_FileInfo ├── .vscode │ ├── launch.json │ └── tasks.json ├── File_And_FileInfo.csproj ├── Program.cs ├── ric-10-20-30.txt ├── ricardo.txt └── teste.txt ├── LerDiretorios ├── .vscode │ ├── launch.json │ └── tasks.json ├── LerDiretorios.csproj └── Program.cs ├── ProjetoCsvHelper ├── .vscode │ ├── launch.json │ └── tasks.json ├── Entrada │ ├── Livros-preco-com-virgula.csv │ ├── Produtos.csv │ └── novos-usuarios.csv ├── Mapping │ └── LivroMap.cs ├── Model │ ├── Livro.cs │ ├── Pessoa.cs │ └── Usuario.cs ├── Program.cs ├── ProjetoCsvHelper.csproj └── Saida │ └── usuarios.csv ├── README.md ├── StreamReaderWriter ├── .vscode │ ├── launch.json │ └── tasks.json ├── MeuArquivo.txt ├── Program.cs └── StreamReaderWriter.csproj ├── StringReader ├── .vscode │ ├── launch.json │ └── tasks.json ├── Program.cs └── StringReader.csproj ├── StringWriter ├── .vscode │ ├── launch.json │ └── tasks.json ├── Program.cs └── StringWriter.csproj └── csvStream ├── .vscode ├── launch.json └── tasks.json ├── Entrada └── usuarios-exportacao.csv ├── Program.cs ├── Saida └── usuarios.csv └── csvStream.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory_And_DirectoryInfo/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/Directory_And_DirectoryInfo/.vscode/launch.json -------------------------------------------------------------------------------- /Directory_And_DirectoryInfo/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/Directory_And_DirectoryInfo/.vscode/tasks.json -------------------------------------------------------------------------------- /Directory_And_DirectoryInfo/Directory_And_DirectoryInfo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/Directory_And_DirectoryInfo/Directory_And_DirectoryInfo.csproj -------------------------------------------------------------------------------- /Directory_And_DirectoryInfo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/Directory_And_DirectoryInfo/Program.cs -------------------------------------------------------------------------------- /Directory_And_DirectoryInfo/brasil.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/Directory_And_DirectoryInfo/brasil.txt -------------------------------------------------------------------------------- /Directory_And_DirectoryInfo/globo/América do Sul/Argentina/argentina.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/Directory_And_DirectoryInfo/globo/América do Sul/Argentina/argentina.txt -------------------------------------------------------------------------------- /Directory_And_DirectoryInfo/globo/América do Sul/Brasil/brasil.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/Directory_And_DirectoryInfo/globo/América do Sul/Brasil/brasil.txt -------------------------------------------------------------------------------- /FileSystemWatcher/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/FileSystemWatcher/.vscode/launch.json -------------------------------------------------------------------------------- /FileSystemWatcher/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/FileSystemWatcher/.vscode/tasks.json -------------------------------------------------------------------------------- /FileSystemWatcher/FileSystemWatcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/FileSystemWatcher/FileSystemWatcher.csproj -------------------------------------------------------------------------------- /FileSystemWatcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/FileSystemWatcher/Program.cs -------------------------------------------------------------------------------- /File_And_FileInfo/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/File_And_FileInfo/.vscode/launch.json -------------------------------------------------------------------------------- /File_And_FileInfo/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/File_And_FileInfo/.vscode/tasks.json -------------------------------------------------------------------------------- /File_And_FileInfo/File_And_FileInfo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/File_And_FileInfo/File_And_FileInfo.csproj -------------------------------------------------------------------------------- /File_And_FileInfo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/File_And_FileInfo/Program.cs -------------------------------------------------------------------------------- /File_And_FileInfo/ric-10-20-30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/File_And_FileInfo/ric-10-20-30.txt -------------------------------------------------------------------------------- /File_And_FileInfo/ricardo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/File_And_FileInfo/ricardo.txt -------------------------------------------------------------------------------- /File_And_FileInfo/teste.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/File_And_FileInfo/teste.txt -------------------------------------------------------------------------------- /LerDiretorios/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/LerDiretorios/.vscode/launch.json -------------------------------------------------------------------------------- /LerDiretorios/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/LerDiretorios/.vscode/tasks.json -------------------------------------------------------------------------------- /LerDiretorios/LerDiretorios.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/LerDiretorios/LerDiretorios.csproj -------------------------------------------------------------------------------- /LerDiretorios/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/LerDiretorios/Program.cs -------------------------------------------------------------------------------- /ProjetoCsvHelper/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/ProjetoCsvHelper/.vscode/launch.json -------------------------------------------------------------------------------- /ProjetoCsvHelper/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/ProjetoCsvHelper/.vscode/tasks.json -------------------------------------------------------------------------------- /ProjetoCsvHelper/Entrada/Livros-preco-com-virgula.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/ProjetoCsvHelper/Entrada/Livros-preco-com-virgula.csv -------------------------------------------------------------------------------- /ProjetoCsvHelper/Entrada/Produtos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/ProjetoCsvHelper/Entrada/Produtos.csv -------------------------------------------------------------------------------- /ProjetoCsvHelper/Entrada/novos-usuarios.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/ProjetoCsvHelper/Entrada/novos-usuarios.csv -------------------------------------------------------------------------------- /ProjetoCsvHelper/Mapping/LivroMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/ProjetoCsvHelper/Mapping/LivroMap.cs -------------------------------------------------------------------------------- /ProjetoCsvHelper/Model/Livro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/ProjetoCsvHelper/Model/Livro.cs -------------------------------------------------------------------------------- /ProjetoCsvHelper/Model/Pessoa.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/ProjetoCsvHelper/Model/Pessoa.cs -------------------------------------------------------------------------------- /ProjetoCsvHelper/Model/Usuario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/ProjetoCsvHelper/Model/Usuario.cs -------------------------------------------------------------------------------- /ProjetoCsvHelper/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/ProjetoCsvHelper/Program.cs -------------------------------------------------------------------------------- /ProjetoCsvHelper/ProjetoCsvHelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/ProjetoCsvHelper/ProjetoCsvHelper.csproj -------------------------------------------------------------------------------- /ProjetoCsvHelper/Saida/usuarios.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/ProjetoCsvHelper/Saida/usuarios.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/README.md -------------------------------------------------------------------------------- /StreamReaderWriter/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/StreamReaderWriter/.vscode/launch.json -------------------------------------------------------------------------------- /StreamReaderWriter/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/StreamReaderWriter/.vscode/tasks.json -------------------------------------------------------------------------------- /StreamReaderWriter/MeuArquivo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/StreamReaderWriter/MeuArquivo.txt -------------------------------------------------------------------------------- /StreamReaderWriter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/StreamReaderWriter/Program.cs -------------------------------------------------------------------------------- /StreamReaderWriter/StreamReaderWriter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/StreamReaderWriter/StreamReaderWriter.csproj -------------------------------------------------------------------------------- /StringReader/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/StringReader/.vscode/launch.json -------------------------------------------------------------------------------- /StringReader/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/StringReader/.vscode/tasks.json -------------------------------------------------------------------------------- /StringReader/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/StringReader/Program.cs -------------------------------------------------------------------------------- /StringReader/StringReader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/StringReader/StringReader.csproj -------------------------------------------------------------------------------- /StringWriter/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/StringWriter/.vscode/launch.json -------------------------------------------------------------------------------- /StringWriter/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/StringWriter/.vscode/tasks.json -------------------------------------------------------------------------------- /StringWriter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/StringWriter/Program.cs -------------------------------------------------------------------------------- /StringWriter/StringWriter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/StringWriter/StringWriter.csproj -------------------------------------------------------------------------------- /csvStream/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/csvStream/.vscode/launch.json -------------------------------------------------------------------------------- /csvStream/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/csvStream/.vscode/tasks.json -------------------------------------------------------------------------------- /csvStream/Entrada/usuarios-exportacao.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/csvStream/Entrada/usuarios-exportacao.csv -------------------------------------------------------------------------------- /csvStream/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/csvStream/Program.cs -------------------------------------------------------------------------------- /csvStream/Saida/usuarios.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/csvStream/Saida/usuarios.csv -------------------------------------------------------------------------------- /csvStream/csvStream.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardovicentini/arquivos_e_streams/HEAD/csvStream/csvStream.csproj --------------------------------------------------------------------------------