/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.1-Release/ |
H A D | js-apidiff-file-management.md | 53 | ohos.fileio | fileIO | createStream(path: string, mode: string): Promise\<Stream>;<br>createStrea…
|
/ohos5.0/docs/en/release-notes/api-diff/v3.1-Release/ |
H A D | js-apidiff-file-management.md | 53 | ohos.fileio | fileIO | createStream(path: string, mode: string): Promise\<Stream>;<br>createStrea…
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-core-file-kit/ |
H A D | js-apis-fileio.md | 2544 ## fileio.createStream<sup>7+</sup> 2546 createStream(path: string, mode: string): Promise<Stream> 2552 > 从API version 9开始废弃,请使用[fs.createStream](js-apis-file-fs.md#fscreatestream)替代。 2574 fileio.createStream(filePath, "r+").then((stream: fileio.Stream) => { 2575 console.info("createStream succeed"); 2577 console.error("createStream failed with error:" + err); 2582 ## fileio.createStream<sup>7+</sup> 2584 createStream(path: string, mode: string, callback: AsyncCallback<Stream>): void 2590 > 从API version 9开始废弃,请使用[fs.createStream](js-apis-file-fs.md#fscreatestream-1)替代。 2607 fileio.createStream(filePath, "r+", (err: BusinessError, stream: fileio.Stream) => { [all …]
|
H A D | js-apis-file-fs.md | 3833 ## fs.createStream 3835 createStream(path: string, mode: string): Promise<Stream> 3863 fs.createStream(filePath, "a+").then((stream: fs.Stream) => { 3865 console.info("createStream succeed"); 3867 …console.error("createStream failed with error message: " + err.message + ", error code: " + err.co… 3872 ## fs.createStream 3874 createStream(path: string, mode: string, callback: AsyncCallback<Stream>): void 3897 fs.createStream(filePath, "r+", (err: BusinessError, stream: fs.Stream) => { 3901 console.info("createStream succeed"); 3937 console.info("createStream succeed"); [all …]
|
/ohos5.0/foundation/distributeddatamgr/distributedfile/ |
H A D | README_zh.md | 198 fileio.createStream("test.txt", "r") 230 fileio.createStream("./testdir/test_stream.txt", "r", function (err, ss) {
|
H A D | README.md | 199 fileio.createStream("./testdir/test_stream.txt", "r", function (err, ss) {
|
/ohos5.0/docs/zh-cn/application-dev/file-management/ |
H A D | app-file-access.md | 16 | createStream | 基于文件路径打开文件流 | 方法 | √ | √ |
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.2-beta5/ |
H A D | js-apidiff-file-management.md | 83 |新增|NA|类名:fileIo<br>方法or属性:function createStream(path: string, mode: string): Promise<Stream>;|@oho… 84 |新增|NA|类名:fileIo<br>方法or属性:function createStream(path: string, mode: string, callback: AsyncCallbac… 265 …createStream(path: string, mode: string): Promise<Stream>;<br>废弃版本:N/A|类名:fileIO<br>方法 or 属性:funct… 266 …unction createStream(path: string, mode: string, callback: AsyncCallback<Stream>): void;<br>废弃版本:N…
|
/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/audiocapturer/include/ |
H A D | audio_capturer_private.h | 109 …AudioCapturerPrivate(AudioStreamType audioStreamType, const AppInfo &appInfo, bool createStream = …
|
/ohos5.0/foundation/filemanagement/file_api/ |
H A D | README.md | 198 fileio.createStream("test.txt", "r") 230 fileio.createStream("./testdir/test_stream.txt", "r", function (err, ss) {
|
H A D | README_zh.md | 104 <p id="p88031126184311"><a name="p88031126184311"></a><a name="p88031126184311"></a>createStream</p>
|
/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/audiorenderer/include/ |
H A D | audio_renderer_private.h | 172 …RendererPrivate(AudioStreamType audioStreamType, const AppInfo &appInfo, bool createStream = true);
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.2-Release/ |
H A D | js-apidiff-file-management.md | 72 |新增|NA|类名:sourcefile;<br>方法or属性:declare function createStream(path: string, mode: string): Promise\… 73 |新增|NA|类名:sourcefile;<br>方法or属性:declare function createStream(path: string, mode: string, callback:… 383 …createStream(path: string, mode: string): Promise\<Stream>;<br>旧版本信息:|类名:sourcefile;<br>方法or属性:dec… 384 …createStream(path: string, mode: string, callback: AsyncCallback\<Stream>): void;<br>旧版本信息:|类名:sou…
|
/ohos5.0/docs/en/release-notes/api-diff/v3.2-beta5/ |
H A D | js-apidiff-file-management.md | 83 |Added|NA|Class name: fileIo<br>Method or attribute name: function createStream(path: string, mode:… 84 |Added|NA|Class name: fileIo<br>Method or attribute name: function createStream(path: string, mode:… 265 …createStream(path: string, mode: string): Promise<Stream>;<br>Deprecated version: N/A|Class name: … 266 …createStream(path: string, mode: string, callback: AsyncCallback<Stream>): void;<br>Deprecated ver…
|
/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/audiocapturer/src/ |
H A D | audio_capturer.cpp | 182 …e::AudioCapturerPrivate(AudioStreamType audioStreamType, const AppInfo &appInfo, bool createStream) in AudioCapturerPrivate() argument 200 if (createStream) { in AudioCapturerPrivate()
|
/ohos5.0/docs/en/application-dev/file-management/ |
H A D | app-file-access.md | 16 | createStream | Creates a stream based on a file path.| Method| Supported| Supported|
|
/ohos5.0/docs/en/application-dev/reference/apis-core-file-kit/ |
H A D | js-apis-fileio.md | 2544 ## fileio.createStream<sup>7+</sup> 2546 createStream(path: string, mode: string): Promise<Stream> 2552 > This API is deprecated since API version 9. Use [fs.createStream](js-apis-file-fs.md#fscreatestre… 2574 fileio.createStream(filePath, "r+").then((stream: fileio.Stream) => { 2577 console.error("createStream failed with error:" + err); 2582 ## fileio.createStream<sup>7+</sup> 2584 createStream(path: string, mode: string, callback: AsyncCallback<Stream>): void 2590 > This API is deprecated since API version 9. Use [fs.createStream](js-apis-file-fs.md#fscreatestre… 2607 fileio.createStream(filePath, "r+", (err: BusinessError, stream: fileio.Stream) => { 3272 …ile operations. Before calling any API of the **Stream** class, use **createStream()** to create a…
|
H A D | js-apis-file-fs.md | 3837 ## fs.createStream 3839 createStream(path: string, mode: string): Promise<Stream> 3867 fs.createStream(filePath, "a+").then((stream: fs.Stream) => { 3871 …console.error("createStream failed with error message: " + err.message + ", error code: " + err.co… 3876 ## fs.createStream 3878 createStream(path: string, mode: string, callback: AsyncCallback<Stream>): void 3901 fs.createStream(filePath, "r+", (err: BusinessError, stream: fs.Stream) => { 4560 … of **Stream**, you need to create a **Stream** instance by using [fs.createStream](#fscreatestrea…
|
/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/audiorenderer/src/ |
H A D | audio_renderer.cpp | 225 …e::AudioRendererPrivate(AudioStreamType audioStreamType, const AppInfo &appInfo, bool createStream) in AudioRendererPrivate() argument 236 if (createStream) { in AudioRendererPrivate()
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-beta2/ |
H A D | js-apidiff-file-management.md | 198 …createStream(path: string, mode: string, callback: AsyncCallback\<Stream>): void;<br>旧版本信息:|类名:sou… 367 …on createStream(path: string, mode: string, callback: AsyncCallback\<Stream>): void;<br>旧版本信息:|类名:…
|
/ohos5.0/docs/en/release-notes/api-diff/v3.2-Release/ |
H A D | js-apidiff-file-management.md | 72 |Added|NA|Class name: sourcefile;<br>Method or attribute name: declare function createStream(path: … 73 |Added|NA|Class name: sourcefile;<br>Method or attribute name: declare function createStream(path: … 383 …createStream(path: string, mode: string): Promise\<Stream>;<br>Old version: |Class name: sourcefil… 384 …createStream(path: string, mode: string, callback: AsyncCallback\<Stream>): void;<br>Old version: …
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-Release to v3.2-Release/ |
H A D | js-apidiff-file-management.md | 395 …createStream(path: string, mode: string, callback: AsyncCallback\<Stream>): void;<br>旧版本信息:|类名:sou… 557 …on createStream(path: string, mode: string, callback: AsyncCallback\<Stream>): void;<br>旧版本信息:|类名:… 615 …on createStream(path: string, mode: string, callback: AsyncCallback\<Stream>): void;<br>旧版本信息:|类名:…
|
/ohos5.0/docs/en/release-notes/api-diff/v4.0-beta2/ |
H A D | js-apidiff-file-management.md | 198 …createStream(path: string, mode: string, callback: AsyncCallback\<Stream>): void;<br>Old version i… 367 …createStream(path: string, mode: string, callback: AsyncCallback\<Stream>): void;<br>Old version i…
|
/ohos5.0/docs/en/release-notes/api-diff/v4.0-Release-vs-v3.2-Release/ |
H A D | js-apidiff-file-management.md | 395 …createStream(path: string, mode: string, callback: AsyncCallback\<Stream>): void;<br>Old version i… 557 …createStream(path: string, mode: string, callback: AsyncCallback\<Stream>): void;<br>Old version i… 615 …createStream(path: string, mode: string, callback: AsyncCallback\<Stream>): void;<br>Old version i…
|