C++ AwsStringStream.h:没有这样的文件或目录

C++ AwsStringStream.h:没有这样的文件或目录,c++,amazon-web-services,amazon-s3,aws-sdk,C++,Amazon Web Services,Amazon S3,Aws Sdk,我正在编写本教程。 我已经安装了所有库和aws cpp sdk。 我在/usr/local/include中有aws文件夹 When I make the cpp file, I have error as sudo make -- Configuring done -- Generating done -- Build files have been written to: /home/Softwares/Projects/S3upload/build [100%] Building CX

我正在编写本教程。 我已经安装了所有库和aws cpp sdk。 我在/usr/local/include中有aws文件夹

When I make the cpp file, I have error as 
 sudo make
-- Configuring done
-- Generating done
-- Build files have been written to: /home/Softwares/Projects/S3upload/build
[100%] Building CXX object CMakeFiles/S3upload.dir/S3upload.cpp.o
/home/Softwares/Projects/S3upload/S3upload.cpp:4:56: fatal error: aws/core/utils/memory/stl/AwsStringStream.h: No such file or directory
 #include <aws/core/utils/memory/stl/AwsStringStream.h> 
                                                        ^
compilation terminated.
make[2]: *** [CMakeFiles/S3upload.dir/S3upload.cpp.o] Error 1
make[1]: *** [CMakeFiles/S3upload.dir/all] Error 2
make: *** [all] Error 2

请尝试将头文件放在引号中,并检查它们是否确实位于正确的目录中

是否确定/user/local/include下存在aws/core/utils/memory/stl/AwsStringStream.h?请注意,文件名区分大小写,是否确定文件名为AwsStringStream.h

是aws文件夹包含在/usr/local/include-in-installation中。是的,非常确定文件名是AwsStringStream.h。是的,文件名有问题。我从链接复制,它有问题。现在我重写了文件名,没有更多的错误。
#include <aws/s3/S3Client.h>
#include <aws/s3/model/PutObjectRequest.h>
#include <aws/s3/model/GetObjectRequest.h>
#include <aws/core/utils/memory/stl/AwsStringStream.h> 

using namespace Aws::S3;
using namespace Aws::S3::Model;


static const char* KEY = "xxxxxxxxxxxx";//"s3_cpp_sample_key";
static const char* BUCKET = "xxxxxx";//"s3-cpp-sample-bucket";

int main()
{
    S3Client client;

    //first put an object into s3
    PutObjectRequest putObjectRequest;
    putObjectRequest.WithKey(KEY)
           .WithBucket(BUCKET);

    //this can be any arbitrary stream (e.g. fstream, stringstream etc...)
    auto requestStream = Aws::MakeShared<Aws::StringStream>("s3-sample");
    *requestStream << "Hello World!";

    //set the stream that will be put to s3
    putObjectRequest.SetBody(requestStream);

    auto putObjectOutcome = client.PutObject(putObjectRequest);

    if(putObjectOutcome.IsSuccess())
    {
        std::cout << "Put object succeeded" << std::endl;
    }
    else
    {
        std::cout << "Error while putting Object " << putObjectOutcome.GetError().GetExceptionName() << 
               " " << putObjectOutcome.GetError().GetMessage() << std::endl;
    }


    return 0;  
}
cmake_minimum_required(VERSION 2.8)
project(S3upload)

#this will locate the aws sdk for c++ package so that we can use its targets
#/usr/src/Softwares/AWSC++SDK/aws-sdk-cpp/build/
find_package(aws-sdk-cpp)

add_executable(S3upload S3upload.cpp)

#since we called find_package(), this will resolve all dependencies, header files, and cflags necessary
#to build and link your executable. 
target_link_libraries(S3upload aws-cpp-sdk-s3)