这是我的问题场景:
1.Create 2 apps.
2.App1 continuously pulls tweets and stores the json file in its /data folder.
3.App2 picks up the latest file from the /data folder of App1 and uses it.
我已使用 R 及其相应的构建包在 bluemix 上部署应用程序。
如何从 App2 访问 App1 中的 /data/file1 ,即我可以在 App2 源文件中执行以下操作:
read.csv("App1/data/Filename.csv") ; bluemix 会理解 App1 文件夹指向的内容吗?