7

現在のディレクトリにあるファイルのデータベースを作成するプロジェクトに取り組んでいます。そして、自分のファイルについて必要な詳細の 1 つは、ubuntu の chmod で設定されているファイルのアクセス許可です。(メモ: chown のように、グループと所有者の情報も必要になります。Boost が所有権情報も取得できるかどうかを教えていただければ幸いです。)

ブースト ファイルシステム ライブラリを使用しており、ドキュメントを何度も確認しましたが、アクセス許可を取得する方法が見つかりませんでした。

このページではenum perms、自分の filesystem.hpp に表示されないファイル許可文字列があることを示しています。(そして、念のためにソースからビルドされた 1.49 バージョンがあることを確認しました)。また、ここの同じページでは、次のような権限を取得できることが示されています。

perms permissions() const noexcept; 
//Returns: The value of
//permissions() specified by the postconditions of the most recent call
//to a constructor, operator=, or permissions(perms) function.

パーミッション機能も、perms リストを保存する場所も見つかりませんでした。

これは私がこれまでに持っているコードです (実際にはブースト チュートリアルからのものですが、再帰的に変更しました)。ファイルのアクセス許可/所有権を取得する方法や、ブースト以外のライブラリを提案する方法を教えていただければ幸いです。

編集: ethan_liou が提案したように s.permissions() を追加しましたが、出力は期待どおりではありませんでした。更新されたコードと出力は次のとおりです。

//  filesystem tut4.cpp  ---------------------------------------------------------------//

//  Copyright Beman Dawes 2009

//  Distributed under the Boost Software License, Version 1.0.
//  See http://www.boost.org/LICENSE_1_0.txt

//  Library home page: http://www.boost.org/libs/filesystem

#include <iostream>
#include <iterator>
#include <vector>
#include <algorithm>
#include <boost/filesystem.hpp>
#include <stdio.h> 
using namespace std;
using namespace boost::filesystem;
int read(path p);

int main(int argc, char* argv[])
{
    if (argc < 2)
    {
        cout << "Usage: tut4 path\n";
        return 1;
    }

    path p (argv[1]);   // p reads clearer than argv[1] in the following code
    read(p);


    return 0;
}
int read(path p) {
    try
    {
        if (exists(p))    // does p actually exist?
        {
            if (is_symlink(p)) {
                cout << p << " is a link\n";

            }
            else if (is_regular_file(p)) {
                // is p a regular file?


                file_status s = status(p);


                cout << p << " size is " << file_size(p) << " perms " << "" ;
                printf("%o\n",s.permissions());
            }

            else if (is_directory(p))      // is p a directory?
            {

                cout << p << " is a directory containing:\n";

                typedef vector<path> vec;             // store paths,
                vec v;                                // so we can sort them later

                copy(directory_iterator(p), directory_iterator(), back_inserter(v));

                sort(v.begin(), v.end());             // sort, since directory iteration
                // is not ordered on some file systems

                for (vec::const_iterator it(v.begin()), it_end(v.end()); it != it_end; ++it)
                {
                    //cout << "   " << *it << '\n';
                    read(*it);
                }
            }
            else
                cout << p << " exists, but is neither a regular file nor a directory\n";
        }
        else
            cout << p << " does not exist\n";
    }

    catch (const filesystem_error& ex)
    {
        cout << ex.what() << '\n';
    }
    return 0;
}

出力:

$ ./a.out ~/Desktop/test
"/home/usr/Desktop/test" is a directory containing:
"/home/usr/Desktop/test/a.out" size is 69446 perms 27746424350
"/home/usr/Desktop/test/la" is a directory containing:
"/home/usr/Desktop/test/la/Untitled Document" size is 0 perms 27746424170
"/home/usr/Desktop/test/la/lala" is a directory containing:
"/home/usr/Desktop/test/la/lala/Link to lalalala" is a link
"/home/usr/Desktop/test/la/lala/Untitled Folder" is a directory containing:
"/home/usr/Desktop/test/la/lala/lalalala" size is 0 perms 0
"/home/usr/Desktop/test/test.cpp" size is 2234 perms 0
"/home/usr/Desktop/test/test.cpp~" size is 2234 perms 0

注: これらの数値は27746424350、プログラムが実行されるたびに変わります。

4

2 に答える 2

9
perms      permissions() const                { return m_perms; } 

boost / filesystem / v3/operations.hppで定義されています

簡単なサンプルコードを追加する

#include <boost/filesystem.hpp> 
#include <stdio.h> 
namespace fs=boost::filesystem;
int main(int argc,char * argv[]){
    fs::path p(argv[1]);
    fs::file_status s = status(p);
    printf("%o\n",s.permissions());
}
于 2012-03-19T19:04:44.920 に答える
-4

Windows のファイル許可の例:

unsigned long attributes = ::GetFileAttributes( filePath.file_string().c_str());

if ( attributes != 0xFFFFFFFF && ( attributes & FILE_ATTRIBUTE_READONLY ))
{
    attributes &= ~FILE_ATTRIBUTE_READONLY;
    ::SetFileAttributes( filePath.file_string().c_str(), attributes );
}
于 2012-09-20T14:07:21.663 に答える