Sumitkumar Namdev Satpute

Results 6 comments of Sumitkumar Namdev Satpute
trafficstars

I would like to work on this, please do share your plan for this activity. Thank You

Sorry for late reply.

> @mvieth Using `experimental/filesystem`? Here's a minimum example: > > ```c++ > // main.cpp > #include > #include > namespace fs = std::experimental::filesystem; > int main() { > auto pwd...

``` std::string getFileExtension(const std::string& filename) { size_t dotPos = filename.find_last_of('.'); if (dotPos != std::string::npos && dotPos < filename.length() - 1) { return filename.substr(dotPos + 1); } else { return "";...

@mvieth by `fs::path | fs::exists` I mean to use `boost::filesystem` i.e ``` #include namespace fs = boost::filesystem; ```

Hi @AlexStroke I would like to pick up this issue.