Difference between revisions of "File (Português)"

(Created page with 'Representa um arquivo em um sistema de arquivos. == Construtores == {{#ask: Category:Functions Constructs::File (Português) | headers=hide | default=None. | ?Description…')
 
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
Representa um arquivo em um sistema de arquivos.
+
Representa um arquivo no sistema de arquivos.
 
== Construtores ==
 
== Construtores ==
{{#ask: [[Category:Functions]] [[Constructs::File (Português)]]
+
{{#ask: [[Category:Functions]] [[Constructs::File (Português)]] [[Concept:Current]]
 
| headers=hide
 
| headers=hide
 
| default=None.
 
| default=None.
 +
| format=template
 +
| template=ListingFields
 +
| introtemplate=ListingIntro
 +
| outrotemplate=ListingOutro
 
| ?Description
 
| ?Description
 +
| ?PrettySince
 +
| ?PrettyRemoved
 
}}
 
}}
 
 
love.filesystem.newFile Creates a new File object.
 
 
 
 
== Funções ==
 
== Funções ==
Estas funções tem parênteses em lugares estranhos. Isso é porque ''File:'' é um termo reservado no Mediawiki.
+
Estas funções têm parênteses em lugares estranhos. Isso é porque ''File:'' é um termo reservado no Mediawiki.
{{#ask: [[Category:Functions]] [[parent::File (Português)]] OR [[parent::Object (Português)]]
+
{{#ask: [[Category:Functions]] [[parent::File (Português)||Object (Português)]] [[Concept:Current]]
 
| headers=hide
 
| headers=hide
 +
| format=template
 +
| template=ListingFields
 +
| introtemplate=ListingIntro
 +
| outrotemplate=ListingOutro
 
| ?Description
 
| ?Description
 +
| ?PrettySince
 +
| ?PrettyRemoved
 
}}
 
}}
 
 
(File):close Closes a file
 
 
(File):eof If the end-of-file has been reached
 
 
(File):getSize Returns the file size
 
 
(File):lines Iterate over all the lines in a file
 
 
(File):open Open the file for write, read or append.
 
 
(File):read Read a number of bytes from a file
 
 
(File):seek Seek to a position in a file
 
 
(File):tell Returns the position in the file
 
 
(File):write Write data to a file
 
 
Object:type Gets the type of the object as a string.
 
 
Object:typeOf Checks whether an object is of a certain type.
 
 
 
 
== Enums ==
 
== Enums ==
{{#ask: [[Category:Enums]] [[parent::File (Português)]]
+
{{#ask: [[Category:Enums]] [[parent::File (Português)]] [[Concept:Current]]
 
| headers=hide
 
| headers=hide
 +
| format=template
 +
| template=ListingFields
 +
| introtemplate=ListingIntro
 +
| outrotemplate=ListingOutro
 
| ?Description
 
| ?Description
 +
| ?PrettySince
 +
| ?PrettyRemoved
 
}}
 
}}
 
+
== Supertipos ==
 
+
* [[parent::Object (Português)]]
FileMode The different modes you can open a file in.
 
 
 
 
== Veja Também ==
 
== Veja Também ==
 
* [[parent::love.filesystem (Português)]]
 
* [[parent::love.filesystem (Português)]]
 
[[Category:Types]]
 
[[Category:Types]]
{{#set:Description=Representa um arquivo em um sistema de arquivos.}}
+
{{#set:Description=Representa um arquivo no sistema de arquivos.}}
 +
{{#set:Since=000}}
 
== Outros Idiomas ==
 
== Outros Idiomas ==
 
{{i18n|File}}
 
{{i18n|File}}

Latest revision as of 00:57, 5 March 2014

Representa um arquivo no sistema de arquivos.

Construtores

love.filesystem.newFile (Português) Cria um novo objeto Arquivo.

Funções

Estas funções têm parênteses em lugares estranhos. Isso é porque File: é um termo reservado no Mediawiki.

(File):close (Português) Fecha um arquivo
(File):eof (Português) Se o fim do arquivo foi alcançado
(File):flush (Português) Descarrega qualquer dado escrito no buffer para o disco. Added since 0.9.0
(File):getBuffer (Português) Obtém o modo de buffer de um arquivo. Added since 0.9.0
(File):getMode (Português) Obtém o FileMode com o qual o arquivo foi aberto. Added since 0.9.0
(File):getSize (Português) Retorna o tamanho do arquivo
(File):isOpen (Português) Descobre se o arquivo está aberto. Added since 0.9.0
(File):lines (Português) Iterage por todas as linhas de um arquivo
(File):open (Português) Abre um arquivo para escrita, leitura ou acréscimo.
(File):read (Português) Lê uma quantidade de bytes de um arquivo.
(File):seek (Português) Vai para uma posição no arquivo.
(File):setBuffer (Português) Configura o modo de buffer para um arquivo aberto para escrita ou acréscimo. Added since 0.9.0
(File):write (Português) Escreve dados no arquivo.
Object:type (Português) Obtém o tipo do objeto como um string.
Object:typeOf (Português) Verifica se um objeto é de um certo tipo.

Enums

BufferMode (Português) Modos de buffer para objetos File. Added since 0.9.0
FileMode (Português) Os diferentes modos em que um File pode ser aberto.

Supertipos

Veja Também


Outros Idiomas