监视文件的更改 我试图在Visual Studio 2008 C++应用程序中实现类似功能的功能。(即,实时显示对不属于我的流程的文件所做的更改。)

监视文件的更改 我试图在Visual Studio 2008 C++应用程序中实现类似功能的功能。(即,实时显示对不属于我的流程的文件所做的更改。),c++,filestream,C++,Filestream,感谢您在Linux上查看文件更改通知。它允许您轮询或选择inotify描述符,并在文件或目录发生更改时收到通知。在Linux上,您可以查看以获得文件更改的通知。它允许您轮询或选择inotify描述符,并在文件或目录发生更改时收到通知。您可以看看tail是如何实现的:看起来您并没有空终止缓冲区…@Billy ONeal-我想是的。向量大小中的+1应该为空终止符腾出空间。@karlphillip-感谢链接。我会回顾一下代码。你可以看看tail是如何实现的:看起来你并没有空终止缓冲区…@billyon

感谢您在Linux上查看文件更改通知。它允许您轮询或选择inotify描述符,并在文件或目录发生更改时收到通知。

在Linux上,您可以查看以获得文件更改的通知。它允许您轮询或选择inotify描述符,并在文件或目录发生更改时收到通知。

您可以看看tail是如何实现的:看起来您并没有空终止缓冲区…@Billy ONeal-我想是的。向量大小中的+1应该为空终止符腾出空间。@karlphillip-感谢链接。我会回顾一下代码。你可以看看tail是如何实现的:看起来你并没有空终止缓冲区…@billyoneal-我想是的。向量大小中的+1应该为空终止符腾出空间。@karlphillip-感谢链接。我会检查代码。
/// name of the file to tail
std::string file_name_;

/// position of the last-known end of the file
std::ios::streampos file_end_;

// start by getting the position of the end of the file.
std::ifstream file( file_name_.c_str() );
if( file.is_open() )
{
    file.seekg( 0, std::ios::end );
    file_end_ = file.tellg();
}

/// callback activated when the file has changed
void Tail::OnChanged()
{
    // re-open the file
    std::ifstream file( file_name_.c_str() );
    if( file.is_open() )
    {
        // locate the current end of the file
        file.seekg( 0, std::ios::end );
        std::streampos new_end = file.tellg();

        // if the file has been added to
        if( new_end > file_end_ )
        {
            // move to the beginning of the additions
            file.seekg( 0, new_end - file_end_ );

            // read the additions to a character buffer
            size_t added = new_end - file_end_;
            std::vector< char > buffer( added + 1 );
            file.read( &buffer.front(), added );

            // display the additions to the user

            // this is always the correct number of bytes added to the file
            std::cout << "added " << added << " bytes:" << std::endl;

            // this always prints nothing
            std::cout << &buffer.front() << std::endl << std::endl;
        }

        // remember the new end of the file
        file_end_ = new_end;
    }
}
if( new_end > file_end_ )
{
    size_t added = new_end - file_end_;
    file.seekg( -added, std::ios::end );