Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modify the code for creating a new directory #30

Open
wants to merge 1 commit into
base: main-legacy
Choose a base branch
from

Conversation

zxytql
Copy link

@zxytql zxytql commented Mar 14, 2024

In file "src/ob_camera_node.cpp" using a function boost::filesystem::create_directory to create a new directory:

    if (!boost::filesystem::exists(current_path + "/point_cloud")) {
      boost::filesystem::create_directory(current_path + "/point_cloud");
    }

and there are two other places.
However, when compiling on some platforms, an undefined reference error will occur. #1
This problem can be solved by using the mkdir function in C language.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant