- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在使用 inotify和 INOTIFY_ADD_WATCH()监视多个目录上的事件。是否可以使用循环添加多个文件路径(目录)。我有以下示例代码,但没有收到任何通知。
示例代码:
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/inotify.h>
#include <vector>
#include <sstream>
#include <fstream>
#include <iostream>
#include <cstring>
#define EVENT_SIZE ( sizeof (struct inotify_event) )
#define BUF_LEN ( 1024 * ( EVENT_SIZE + 16 ) )
using namespace std;
int main( int argc, char **argv )
{
//---------------------------------------------------
vector<string> sensitive_dir_path;//a vector to store file path(directory)
const int max_chars_per_line=200000;
ifstream fin("secure_file_path.txt");//file containing file paths
if(!fin.good())
{
cout<<"File not found: [file name: 'secure_file_path.txt' not found: "<<endl;
exit(0);
}
while(!fin.eof())//open file and push the lines to a vector
{
char buf[max_chars_per_line];
fin.getline(buf, max_chars_per_line);
string str(buf);
if(str.compare("")== 0)
{
continue;
}
else
{
sensitive_dir_path.push_back(str);
}
}
//---------------------------------------------------
int length, i = 0;
int fd;
int wd[sensitive_dir_path.size()];
char buffer[BUF_LEN];
fd = inotify_init();
if ( fd < 0 )
{
perror( "inotify_init" );
}
for(int index=0;index<sensitive_dir_path.size();index++)
{
string new_path=sensitive_dir_path[index];
char* fam_sensitive_dir_path=new char[new_path.length()];
strcpy(fam_sensitive_dir_path,new_path.c_str());
wd[index] = inotify_add_watch( fd,fam_sensitive_dir_path, IN_CREATE);
//cout<<"path: "<<fam_sensitive_dir_path<<" will be monitored\n";
}
while (1)
{
struct inotify_event *event;
length = read( fd, buffer, BUF_LEN );
if ( length < 0 )
{
perror( "read" );
}
event = ( struct inotify_event * ) &buffer[ i ];
if ( event->len )
{
if ( event->mask & IN_CREATE )
{
if ( event->mask & IN_ISDIR )
{
printf( "The directory %s was created.\n", event->name );
}
else
{
printf( "The file %s was created.\n", event->name );
}
}
}
}
for(int index=0;index<sensitive_dir_path.size();index++)//
{
( void ) inotify_rm_watch( fd, wd[index] );
}
( void ) close( fd );
exit( 0 );
}
要读取的文件:
"/home/Dir-one"
“/home/目录二”
“/home/目录三”...
或添加多目录的任何替代选项?
最佳答案
您可以在缓冲区中接收多个事件,但您的代码只查看第一个。
您应该将循环更改为更像这样:
while (1) {
struct inotify_event *event, *end;
length = read(fd, buffer, BUF_LEN);
if (length < 0) {
perror( "read" );
break;
}
// Our current event pointer
event = (struct inotify_event *) &buffer[0];
// an end pointer so that we know when to stop looping below
end = (struct inotify_event *) &buffer[length];
while (event < end) {
// Do your printing or whatever here
printf("name is %s\n", event->name);
// Now move to the next event
event = (struct inotify_event *)((char*)event) + sizeof(*event) + event->len;
}
}
关于c++ - inotify,inotify_add_watch() 监控多个目录,c++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33146592/
我正在为我的程序编写安装脚本,它应该在 Linux/Unix 操作系统上运行。以下文件的默认目录是什么: 可执行文件(程序)。程序应通过从命令行键入其名称来执行。 共享库。 第三方共享库(程序未开源,
我有一堆用户、组和应用程序注册,我的 MVC 应用程序使用 AAD 数据进行身份验证和授权。是否可以将 Azure Active Directory 从一个租户(目录)迁移到另一个租户(目录)?如果可
查看 cljsbuild 文档 https://github.com/emezeske/lein-cljsbuild :cljsbuild { :builds [{ ; The
忽略已经版本控制的文件 如果你不小心添加了一些应该被忽略的文件,你如何将它们从版本控制中去除而不会丢失它们?或许你有自己的IDE配置文件,不是项目的一部分,但将会花费很多时间使之按照自己的方式工作。
我想使用\tableofcontents 命令,但没有目录从新页面开始或在末尾创建新页面,并且所有内容都是单倍行距。我怎样才能做到这一点?我假设使用 tocloft,但有哪些选择? 谢谢 最佳答案 试
我有一些 javascript 菜单代码,可以在单独的目录中正常工作。但是,当我尝试从同一目录中调用相同的 .js 文件时,它不会看到这些文件。 以下内容来自另一个目录: script type="t
我有这样的路径: /my/path/to/important_folder 在同一级别上,我还有其他文件和文件夹想要在达到与 important_folder 相同的级别时列出。 我的文件夹可能更深,
1、获取文件路径实现 1.1 获取当前文件路径 ? 1
我正在使用最新版本的 NTEmacs。 我写了一个名为“.dir-locals.el”的文件,如下所示。 ((nil . ((tab-width . 8) (fill-column .
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 7年前关闭。 Improve thi
在我的 .vimrc 中有这些行 :set foldmethod=marker :set foldmarker=SECTION:,ENDSECTION: 用于自定义代码折叠。在我的文件中,相关语言的注
在 fish 中: for x in * echo $x end *这里包括所有目录和文件,如何只列出文件(或目录)? 最佳答案 fish 没有很多花哨的通配语法。但是,目录可以像这样迭代: f
这是我的目录结构: ├── src │ ├── helpers │ │ ├── __init__.py │ │ ├── foo.py │ │ └── bar.py │
我想递归重命名文件夹/目录名称并找到 this solution所以。但是这个命令没有效果 find . -type f -exec rename 's/old/new/' '{}' \; 这是一个正
我想在相册中创建一个文件夹,并希望将图像保存在创建的相册中。 这可能吗?有什么办法可以做到这一点吗? 我已经搜索过,大多数人都说这是不可能的。 感谢您的帮助。 最佳答案 您也许可以使用AssetsLi
如何在python中使用用户定义的名称创建临时文件/目录。我知道 tempfile .但是我看不到任何以文件名作为参数的函数。 注意:我需要这个来对包含临时文件的临时目录上的 glob(文件名模式匹配
我在项目中使用JaCoCo Gradle插件。 作为问题的一个示例,我的大部分代码都在com.me.mysoftware包下。 我正在使用代码生成器来生成build/generated/java/..
我正在尝试使用 Gradle 开始运行 jar 文件 我的任务如下所示: task startServer(type: Exec) { workingDir file("${buildDir}/a
如何在 Ant 中定义一个目录集,其中包括两个目录:项目的基目录和子目录“test”? 看起来您无法使用“/”、“.”或“”专门包含目录集的根目录。例如,这包括“./test”,但不包括“.”:
我正在使用 CTAGs 包,它使用 Sublime Text 2 生成两个文件 .tags 和 .tags_sorted_by_file。 那么当我进行项目搜索(CMD + SHIFT + F)时,如
我是一名优秀的程序员,十分优秀!